Files
DayZ-Epoch/SQF/dayz_code/system/scheduler/sched_spawnCheck.sqf
2016-02-27 22:34:50 -05:00

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;
};