mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-07-02 06:31:56 +03:00
e81f19757e
These contain trees and buildings which need their chopped/destroyed
status synchronized for all clients.
This reverts c21a731.
Vanilla commit:
https://github.com/DayZMod/DayZ/commit/32f2fa3b22f78948f1c00aaf32d687058c69d6da
20 lines
648 B
Plaintext
20 lines
648 B
Plaintext
/*
|
|
Add POI objects on server machine only.
|
|
Do not use execVM. This must be unscheduled to finish before server_monitor.sqf runs (vehicles or players can spawn on top)
|
|
Do not use createVehicleLocal for these. They contain trees and buildings (need chopped/destroyed status synchronized for all clients)
|
|
*/
|
|
|
|
{
|
|
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"
|
|
]; |