mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
10 lines
274 B
Plaintext
10 lines
274 B
Plaintext
#include "scheduler.hpp"
|
|
|
|
sched_spawnCheck_init = { []spawn{} };
|
|
sched_spawnCheck = {
|
|
HIDE_FSM_VARS
|
|
if (scriptDone _this) then {
|
|
_this = [] spawn player_spawnCheck; // calls buildingSpawnZombies --> zombie_generate which uses sleep, can't put in scheduler
|
|
};
|
|
_this;
|
|
}; |