mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
Admin can choose vanilla, classic epoch or classic epoch dark. dayz_hungerThirst was replaced with dayz_NutritionSystem
35 lines
952 B
Plaintext
35 lines
952 B
Plaintext
#include "scheduler.hpp"
|
|
|
|
sched_gui_init = { [false] };
|
|
|
|
sched_gui = {
|
|
HIDE_FSM_VARS
|
|
private [ "_array", "_initDone" ];
|
|
|
|
_initDone = _this select 0;
|
|
|
|
if ((!_initDone and !isNil 'Dayz_loginCompleted') and {(Dayz_loginCompleted)}) then {
|
|
if (toLower DZE_UI == "vanilla") then {3 cutRsc ['playerStatusGUI','PLAIN',3];} else {3 cutRsc ['playerStatusGUI_epoch','PLAIN',3];};
|
|
_initDone = true;
|
|
};
|
|
//else {
|
|
// diag_log [ diag_Ticktime, __FILE__, "waiting", _initDone,Dayz_loginCompleted];
|
|
//};
|
|
if (_initDone) then {
|
|
_array = player call world_surfaceNoise;
|
|
dayz_surfaceNoise = _array select 1;
|
|
dayz_surfaceType = _array select 0;
|
|
call player_checkStealth;
|
|
dayz_statusArray = call player_updateGui;
|
|
};
|
|
|
|
// move this elsewhere, it deals with the menu
|
|
if (!isNull cursorTarget and {!dayz_heartBeat} and {DZE_HeartBeat}) then {
|
|
if (alive cursorTarget) then {
|
|
cursorTarget spawn dayz_lowHumanity;
|
|
};
|
|
};
|
|
|
|
[_initDone]
|
|
};
|