2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* 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-01-11 16:42:31 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* [car] call ace_common_fnc_getTurretsFFV
|
|
|
|
*
|
2015-09-20 21:18:51 +00:00
|
|
|
* Public: Yes
|
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
|
|
|
|
2016-05-21 11:29:42 +00:00
|
|
|
fullCrew [_vehicle, "turret", true] select {_x select 4} apply {_x select 3} // return
|