ACE3/addons/common/functions/fnc_ASLToPosition.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

25 lines
379 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: esteldunedain
* Converts ASL to Arma "Position"
*
* Arguments:
* 0: position x <NUMBER>
* 1: position y <NUMBER>
* 2: position z <NUMBER>
*
* Return Value:
* None
*
* Example:
* [1, 2, 3] call ace_common_fnc_ASLToPosition
*
* Public: No
*/
if (surfaceIsWater _this) then {
_this
} else {
ASLtoATL _this
};