ACE3/addons/common/functions/fnc_getPylonTurret.sqf
mharis001 5bc43fe247
Common - Improve getPylonTurret by using getAllPylonsInfo (#8087)
* Improve getPylonTurret by using getAllPylonsInfo

* Fix indentation

Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2021-02-23 10:57:57 -06:00

22 lines
455 B
Plaintext

#include "script_component.hpp"
/*
* Author: PabstMirror
* Returns the turret path that owns the given pylon.
*
* Arguments:
* 0: Vehicle <OBJECT>
* 1: Pylon Index (starting at 0) <NUMBER>
*
* Return Value:
* Turret Path (either [-1] or [0]) <ARRAY>
*
* Example:
* [cursorObject, 0] call ace_common_fnc_getPylonTurret
*
* Public: No
*/
params ["_vehicle", "_pylonIndex"];
getAllPylonsInfo _vehicle param [_pylonIndex, []] param [2, [-1]]