ACE3/addons/common/functions/fnc_getTurretsFFV.sqf

33 lines
601 B
Plaintext
Raw Normal View History

/*
* Author: commy2
* Get the turret indices of ffv turrets.
*
2015-09-20 21:18:51 +00:00
* Arguments:
* 0: Vehicle <OBJECT>
*
* Return Value:
* Vehicle FFV Turret indecies <ARRAY>
*
2015-09-20 21:18:51 +00:00
* Public: Yes
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
params [["_vehicle", objNull, [objNull]]];
private _turrets = allTurrets [_vehicle, true];
private _turret = [];
2015-09-20 21:18:51 +00:00
{
private _config = configFile >> "CfgVehicles" >> typeOf _vehicle;
2015-05-14 18:06:06 +00:00
_config = [_config, _x] call FUNC(getTurretConfigPath);
2015-05-14 18:06:06 +00:00
if (getNumber (_config >> "isPersonTurret") == 1) then {
_turret pushBack _x;
};
2015-09-20 21:18:51 +00:00
false
} count _turrets;
_turret