ACE3/addons/common/functions/fnc_getDoorTurrets.sqf

35 lines
675 B
Plaintext
Raw Normal View History

/*
* Author: bux578
2015-09-20 22:28:25 +00:00
* Returns all turret indecies of door gunners.
*
2015-09-20 22:28:25 +00:00
* Arguments:
* 0: Vehicle <OBJECT>
*
2015-09-20 22:28:25 +00:00
* Return Value:
* All turret indecies of the Vehicle <ARRAY>
*
2015-09-20 22:28:25 +00:00
* Public: Yes
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
2015-09-20 22:28:25 +00:00
params ["_vehicle"];
2015-09-20 22:28:25 +00:00
private ["_turrets", "_doorTurrets", "_config"];
2015-03-25 21:50:28 +00:00
_turrets = allTurrets [_vehicle, true];
_doorTurrets = [];
{
2015-05-14 18:06:06 +00:00
_config = configFile >> "CfgVehicles" >> typeOf _vehicle;
2015-09-20 22:28:25 +00:00
2015-05-14 18:06:06 +00:00
_config = [_config, _x] call FUNC(getTurretConfigPath);
2015-09-20 22:28:25 +00:00
if (getNumber (_config >> "isCopilot" == 0) && {count getArray (_config >> "weapons") > 0}) then {
2015-05-14 18:06:06 +00:00
_doorTurrets pushBack _x;
};
2015-09-20 22:28:25 +00:00
false
} count _turrets;
_doorTurrets