2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: bux578
|
2015-09-20 22:28:25 +00:00
|
|
|
* Returns all turret indecies of door gunners.
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
2015-09-20 22:28:25 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: Vehicle <OBJECT>
|
2015-01-12 04:02:33 +00:00
|
|
|
*
|
2015-09-20 22:28:25 +00:00
|
|
|
* Return Value:
|
|
|
|
* All turret indecies of the Vehicle <ARRAY>
|
2015-01-12 04:02:33 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* [car] call ace_common_fnc_getDoorTurrets
|
|
|
|
*
|
2015-09-20 22:28:25 +00:00
|
|
|
* Public: Yes
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
|
|
|
|
2015-09-20 22:28:25 +00:00
|
|
|
params ["_vehicle"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-12-12 15:48:54 +00:00
|
|
|
private _turrets = allTurrets [_vehicle, true];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-12-12 15:48:54 +00:00
|
|
|
private _doorTurrets = [];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
{
|
2015-12-12 15:48:54 +00:00
|
|
|
private _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-01-11 16:42:31 +00:00
|
|
|
|
2017-05-14 19:48:05 +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;
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
_doorTurrets
|