ACE3/addons/common/functions/fnc_getTurretGunner.sqf
2015-01-13 20:56:02 +01:00

31 lines
630 B
Plaintext

/*
* Author: commy2
*
* Get the turret index of a vehicles gunner.
*
* Argument:
* 0: Vehicle type (String)
*
* Return value:
* Turret index of the vehicles gunner. Empty array means no gunner position. (Array)
*/
#include "script_component.hpp"
private ["_vehicle", "_turrets", "_turret", "_config"];
_vehicle = _this select 0;
_turrets = [_vehicle] call FUNC(getTurrets);
_turret = [];
{
_config = configFile >> "CfgVehicles" >> _vehicle;
_config = [_config, _x] call FUNC(getTurretConfigPath);
if (getNumber (_config >> "primaryGunner") == 1) exitWith {
_turret = _x;
};
} forEach _turrets;
_turret