ACE3/addons/common/functions/fnc_getPylonTurret.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

22 lines
458 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]]