GSC Increased Zombies Limit

BullyWiiPlaza

Modder
Messages
214
Reaction score
174
Points
818
The following script increases the amount of Zombies that can be spawned in at the same time. The usual amount is 24 but with this it can be up to 32 if playing Grief or 31 if not. I haven't discovered any negative effects from doing this such as error messages or crashing so enjoy it. :grinning:
Code:
increaseZombiesLimit()
{
    level.zombie_ai_limit = 9999;
    level.zombie_actor_limit = 9999;
}
I'm calling this in the
Code:
init()
function but you can also put this as an option in your menu. Let me know if you want an undo function or not. I personally keep it on by default so there is no need.
 
Top