mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
32 lines
709 B
Plaintext
32 lines
709 B
Plaintext
/*
|
|
* 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)
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_vehicleType", "_turrets", "_doorTurrets", "_config"];
|
|
|
|
_vehicleType = _this select 0;
|
|
|
|
_turrets = [_vehicleType] call FUNC(getTurrets);
|
|
|
|
_doorTurrets = [];
|
|
|
|
{
|
|
_config = configFile >> "CfgVehicles" >> _vehicleType;
|
|
_config = [_config, _x] call FUNC(getTurretConfigPath);
|
|
|
|
if ((getNumber (_config >> "isCopilot") == 0) && count (getArray (_config >> "weapons")) > 0 ) then {
|
|
_doorTurrets pushBack _x;
|
|
};
|
|
} forEach _turrets;
|
|
|
|
_doorTurrets
|