mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
10 lines
279 B
Plaintext
10 lines
279 B
Plaintext
#include "scheduler.hpp"
|
|
|
|
sched_spawnCheck_init = { []spawn{} };
|
|
sched_spawnCheck = {
|
|
HIDE_FSM_VARS
|
|
if (scriptDone _this) then {
|
|
_this = [] execVM '\z\addons\dayz_code\compile\player_spawnCheck.sqf'; // stuffed with "sleep" commands, can't put it in scheduler
|
|
};
|
|
_this;
|
|
}; |