mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-15 13:26:39 +03:00
Players are able to use flares inside a vehicle now
Also remove FNC_GetSetPos. It is no longer needed or used. Made by @Victor-the-Cleaner
This commit is contained in:
31
SQF/dayz_code/old/fnc_getSetPos.sqf
Normal file
31
SQF/dayz_code/old/fnc_getSetPos.sqf
Normal file
@@ -0,0 +1,31 @@
|
||||
//DO NOT USE IF YOU NEED ANGLE COMPENSATION!!!!
|
||||
private["_params","_thingy","_isATL","_pos"];
|
||||
|
||||
_params = count _this;
|
||||
_thingy = _this select 0;
|
||||
_isATL = false;
|
||||
|
||||
if (_params > 1) then {
|
||||
_pos = _this select 1;
|
||||
if (_params > 2) then {
|
||||
_isATL = _this select 2;
|
||||
};
|
||||
} else {
|
||||
_pos = getPosASL _thingy;
|
||||
};
|
||||
|
||||
if (surfaceIsWater _pos) then {
|
||||
if (_isATL) then {
|
||||
_thingy setPosASL (ATLToASL _pos);
|
||||
} else {
|
||||
_thingy setPosASL _pos;
|
||||
};
|
||||
} else {
|
||||
if (_isATL) then {
|
||||
_thingy setPosATL _pos;
|
||||
} else {
|
||||
_thingy setPosATL (ASLToATL _pos);
|
||||
};
|
||||
};
|
||||
|
||||
_pos;
|
||||
Reference in New Issue
Block a user