How do you increase number of crash sites in Taviana?

in your dayz_server.pbo go to system/server_monitor.sqf and scroll all the way to the bottom and change the 5 to whatever you want it to be.

Code:
//Spawn crashed helos
for "_x" from 1 to 5 do {
    _id = [] spawn spawn_heliCrash;
    //waitUntil{scriptDone _id};
};
 
Back
Top