Zombies wont spawn... Can someone help me please?

AxeCain

Member
I pieced together my own Mission and Sever PBO's...
Everything loads fine and smooth but only 1 or 2 zombies spawn on the entire map.

Would someone please take a look at my PBO's and let me know where i went wrong?
Mission

Server

EDIT: i figured it out.

Thank You
 
Your issue is different from mine but i did locate your issue.
You need to correct your compiles.sqf
Example
Code:
    player_spawnLootCheck =        compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\player_spawnlootCheck.sqf";
Need to be changed to
Code:
    player_spawnLootCheck =        compile preprocessFileLineNumbers "dayz_code\compile\player_spawnlootCheck.sqf";

You need to make these changes (show the correct path) for all the custom files you are using.
Only the ones that are in your compiles.sqf though.
 
Back
Top