mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 16:03:31 +00:00
17 lines
347 B
Plaintext
17 lines
347 B
Plaintext
params["_latitude", "_longitude", "_altitude"];
|
|
|
|
_position = [_latitude, _longitude, _altitude];
|
|
|
|
_realLocation = null;
|
|
|
|
switch (worldName) do {
|
|
case "Altis": {
|
|
_realLocation = _position call armatak_fnc_convert_to_altis;
|
|
};
|
|
case "Stratis": {
|
|
_realLocation = _position call armatak_fnc_convert_to_stratis;
|
|
};
|
|
default {};
|
|
};
|
|
|
|
_realLocation |