ACE3/addons/rearm/functions/fnc_getAllRearmTurrets.sqf

33 lines
775 B
Plaintext
Raw Normal View History

/*
* Author: Tuupertunut
* Returns all turrets in a vehicle.
*
* BIS command "allTurrets" does not return the driver turret at the time of writing (2017-07-16).
* This function just adds driver turret to the array returned by "allTurrets".
*
* Arguments:
2018-04-08 01:23:10 +00:00
* 0: Vehicle <OBJECT><STRING>
*
* Return Value:
* Turret paths <ARRAY>
*
* Example:
* [vehicle] call ace_rearm_fnc_getAllRearmTurrets
*
* Public: No
*/
#include "script_component.hpp"
params ["_vehicle"];
2018-04-08 01:23:10 +00:00
private _turrets = if (_vehicle isEqualType objNull) then {
allTurrets _vehicle;
} else {
[_vehicle] call BIS_fnc_allTurrets; // "Does what allTurrets command does, except the param is vehicle's config class name"
};
// Adding the driver turret "[-1]".
_turrets pushBack [-1];
_turrets