mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
616 B
Plaintext
31 lines
616 B
Plaintext
/*
|
|
* Author: commy2
|
|
*
|
|
* Get the turret indices of ffv turrets.
|
|
*
|
|
* Argument:
|
|
* 0: Vehicle (Object)
|
|
*
|
|
* Return value:
|
|
* Turret index of the vehicles gunner. Empty array means no ffv turrets. (Array)
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_turrets", "_turret", "_config"];
|
|
|
|
PARAMS_1(_vehicle);
|
|
|
|
_turrets = allTurrets [_vehicle, true];
|
|
|
|
_turret = [];
|
|
{
|
|
_config = configFile >> "CfgVehicles" >> typeOf _vehicle;
|
|
|
|
_config = [_config, _x] call FUNC(getTurretConfigPath);
|
|
|
|
if (getNumber (_config >> "isPersonTurret") == 1) then {
|
|
_turret pushBack _x;
|
|
};
|
|
} forEach _turrets;
|
|
_turret
|