People spawning as birds

Zeehond23

Valued Member!
Hi

When my server hits around 30 players, people start spawning in as birds.

I added a separate cleanup for groups and increased the server restart to every 3 hours. Did not really fix it.
The RTP does not show any errors.
I set BE to kick for seagul.

My AI is spawned as "East"

Any idea or fix for this? I checked the forums but no real solution :(
 
Same thing here but i think i fixed it. I dont take credit for this script but i dont know who made it.
Make a cleaner.sqf file with this in it
Code:
while {true} do {
    {
        if (count units _x==0) then {
            deleteGroup _x;
            //diag_log ("CUSTOM: GROUP CLEANUP");
        };
    } forEach allGroups;
    sleep 180; // run every 3min
}
Place cleaner.sqf in your server.pbo in the init folder

Then go into server_functions and put this at the top
Code:
[] execVM "\z\addons\dayz_server\init\cleaner.sqf";
 
Did you ever read the op? ;)

I've added that script and it upped the threshold from 20 players to 30-ish,but after that it's kaw kaw again.

I have sarge and missions running. They are both members of "east"
 
Back
Top