ACE3/addons/common/functions/fnc_getDoorTurrets.sqf

32 lines
709 B
Plaintext
Raw Normal View History

/*
* Author: bux578
*
* Gets the turret index of door gunners
*
* Argument:
* 0: Vehicle type (String)
*
* Return value:
* Turret indexes of the door gunner. Empty array means no gunner position. (Array)
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
private ["_vehicleType", "_turrets", "_doorTurrets", "_config"];
_vehicleType = _this select 0;
2015-01-11 18:20:14 +00:00
_turrets = [_vehicleType] call FUNC(getTurrets);
_doorTurrets = [];
{
_config = configFile >> "CfgVehicles" >> _vehicleType;
2015-01-11 18:20:14 +00:00
_config = [_config, _x] call FUNC(getTurretConfigPath);
if ((getNumber (_config >> "isCopilot") == 0) && count (getArray (_config >> "weapons")) > 0 ) then {
_doorTurrets pushBack _x;
};
} forEach _turrets;
_doorTurrets