ACE3/addons/common/functions/fnc_getTurretCopilot.sqf
2015-09-20 23:18:51 +02:00

35 lines
701 B
Plaintext

/*
* Author: commy2
* Get the turret index of a vehicles copilot.
*
* Arguments:
* 0: Vehicle <OBJECT>
*
* Return Value:
* Vehicle Copilot Turret indecies <ARRAY>
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_vehicle"];
private ["_turrets", "_turret", "_config"];
_turrets = allTurrets [_vehicle, true];
_turret = [];
{
_config = configFile >> "CfgVehicles" >> typeOf _vehicle;
_config = [_config, _x] call FUNC(getTurretConfigPath);
if (getNumber (_config >> "isCopilot") == 1 && {getNumber (_config >> "primaryGunner") != 1} && {getNumber (_config >> "primaryObserver") != 1}) exitWith {
_turret = _x;
};
false
} count _turrets;
_turret