Please help with dayz.st server..remove zombies

Hugo

New Member
Hi,

I try all to remove zombies from my dayz.st server.
Need help cant do it...i already check all my files and nothing.
I already read some posts but the files doenst match with my dayz.st server, can someone give me a little help and tell me what i should change??

Thnks
 
in variables.sqf set:

dayz_maxLocalZombies = 0;
dayz_maxNearByZombies = 0;
dayz_maxGlobalZeds = 300;

Tested, working.

You can find on forum how to implement variables.sqf to your mission file.
 
in variables.sqf set:

dayz_maxLocalZombies = 0;
dayz_maxNearByZombies = 0;
dayz_maxGlobalZeds = 300;

Tested, working.

You can find on forum how to implement variables.sqf to your mission file.


Also just tested this and can confirm this is working.
 
To make a custom variables go into your mission init.sqf and find the line:

Code:
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\variables.sqf";

and add this under it
Code:
call compile preprocessFileLineNumbers "variables\variables.sqf";

so it should look like this
Code:
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\variables.sqf";                //Initilize the Variables (IMPORTANT: Must happen very early)
call compile preprocessFileLineNumbers "variables\variables.sqf";
progressLoadingScreen 0.1;

Now in your mission root create a folder called variables and add variables.sqf inside that add the code above and repack. Should save you some searching :)
 
Back
Top