mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-07-04 23:51:56 +03:00
2ecb614534
Vanilla commits: https://github.com/DayZMod/DayZ/commit/1f89bcfb9857e2bb94a0609cf7b0d89490272684 https://github.com/DayZMod/DayZ/commit/0defa2af1ec0a9a46d15a665eb25f6be604a0a07
19 lines
537 B
Plaintext
19 lines
537 B
Plaintext
/*
|
|
Add POI objects locally on every machine early.
|
|
Do not use execVM. This must be unscheduled to finish before player_monitor.fsm and server_monitor.sqf run. (objects or player spawn on top)
|
|
*/
|
|
|
|
{
|
|
call compile preprocessFileLineNumbers ("\z\addons\dayz_code\system\mission\chernarus\poi\" + _x + ".sqf");
|
|
} forEach [
|
|
//"Twains", //Filled with Server sleeps, removed for now
|
|
"DevilsFarm",
|
|
"NEA",
|
|
"C130Crash",
|
|
"ChernoBuildings",
|
|
"DeadForest",
|
|
"KomyshovoRoadblock",
|
|
"MilitaryAirpoort",
|
|
"ZelenogorskBuildings",
|
|
"NWATentCamp"
|
|
]; |