2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Get the turret index of a vehicles commander.
|
|
|
|
*
|
2015-09-20 21:18:51 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: Vehicle <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Vehicle commander turrent indecies <ARRAY>
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
2015-09-20 21:18:51 +00:00
|
|
|
* Public: Yes
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-12-12 15:48:54 +00:00
|
|
|
params [["_vehicle", objNull, [objNull]]];
|
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 _turret = [];
|
2015-09-20 21:18:51 +00:00
|
|
|
|
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 21:18:51 +00:00
|
|
|
|
|
|
|
_config = [_config, _x] call FUNC(getTurretConfigPath);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-20 21:18:51 +00:00
|
|
|
if (getNumber (_config >> "primaryObserver") == 1) exitWith {
|
|
|
|
_turret = _x;
|
|
|
|
};
|
|
|
|
false
|
|
|
|
} count _turrets;
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
_turret
|