mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Move HALO spawn below enableSimulation in player_monitor.fsm #1809
Fixes stuck floating in air on Napf when dayz_paraspawn = true; Should also fix #1809. Fixes #1809
This commit is contained in:
@@ -20,5 +20,6 @@
|
|||||||
[FIXED] Swimming in ground glitch when relogging at certain positions on certain maps like Napf and Tavi. @ebayShopper
|
[FIXED] Swimming in ground glitch when relogging at certain positions on certain maps like Napf and Tavi. @ebayShopper
|
||||||
[FIXED] No damage from hitting ground after HALO jump when DZE_HaloOpenChuteHeight was set to -1. @ebayShopper
|
[FIXED] No damage from hitting ground after HALO jump when DZE_HaloOpenChuteHeight was set to -1. @ebayShopper
|
||||||
[FIXED] Added back missing call to Epoch player_antiWall function for preventing base glitching. #1817 @ndavalos @ebayShopper
|
[FIXED] Added back missing call to Epoch player_antiWall function for preventing base glitching. #1817 @ndavalos @ebayShopper
|
||||||
|
[FIXED] HALO fresh spawns stuck in air or failing to start correctly sometimes due to player simulation disabled. #1809 @oiad @ebayShopper
|
||||||
|
|
||||||
[INFO] See Documents\CHANGE LOG 1.0.6.txt for the full list of 1.0.5.1 --> 1.0.6 changes.
|
[INFO] See Documents\CHANGE LOG 1.0.6.txt for the full list of 1.0.5.1 --> 1.0.6 changes.
|
||||||
@@ -989,16 +989,8 @@ class FSM
|
|||||||
" };" \n
|
" };" \n
|
||||||
"} count allMissionObjects ""SpawnableWreck"";" \n
|
"} count allMissionObjects ""SpawnableWreck"";" \n
|
||||||
"{deleteVehicle _x} count (_setPos nearEntities [""zZombie_Base"",30]);" \n
|
"{deleteVehicle _x} count (_setPos nearEntities [""zZombie_Base"",30]);" \n
|
||||||
"" \n
|
"player setDir _setDir;" \n
|
||||||
"if(dayz_paraSpawn && (freshSpawn == 2)) then {" \n
|
"player setPosATL [_setPos select 0,_setPos select 1,(_setPos select 2)+.1]; //Prevents swimming in ground glitch" \n
|
||||||
" player setDir _setDir;" \n
|
|
||||||
" player setPosATL [_setPos select 0,_setPos select 1,2000];" \n
|
|
||||||
" [player,2000] spawn BIS_fnc_halo;" \n
|
|
||||||
"} else {" \n
|
|
||||||
" player setDir _setDir;" \n
|
|
||||||
" player setPosATL [_setPos select 0,_setPos select 1,(_setPos select 2)+.1]; //Prevents swimming in ground glitch" \n
|
|
||||||
"};" \n
|
|
||||||
"" \n
|
|
||||||
"player setVelocity [0,0,0.5];" \n
|
"player setVelocity [0,0,0.5];" \n
|
||||||
"{player reveal _x} count _torev4l;" \n
|
"{player reveal _x} count _torev4l;" \n
|
||||||
"dayz_myPosition = _setPos;" \n
|
"dayz_myPosition = _setPos;" \n
|
||||||
@@ -1176,7 +1168,8 @@ class FSM
|
|||||||
"" \n
|
"" \n
|
||||||
"{ _x call fnc_veh_ResetEH; } forEach vehicles;" \n
|
"{ _x call fnc_veh_ResetEH; } forEach vehicles;" \n
|
||||||
"player allowDamage true;" \n
|
"player allowDamage true;" \n
|
||||||
"player enableSimulation true;"/*%FSM</STATEINIT""">*/;
|
"player enableSimulation true;" \n
|
||||||
|
"if (dayz_paraSpawn && freshSpawn == 2) then {[player,2000] spawn BIS_fnc_halo;};"/*%FSM</STATEINIT""">*/;
|
||||||
precondition = /*%FSM<STATEPRECONDITION""">*/""/*%FSM</STATEPRECONDITION""">*/;
|
precondition = /*%FSM<STATEPRECONDITION""">*/""/*%FSM</STATEPRECONDITION""">*/;
|
||||||
class Links
|
class Links
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user