Modme Forums

Increase number of zombies

Game Modding | Call of Duty: Black Ops 3 | Scripting


ModmeBot:

Thread By: Pipi

Hello!

I am making an open map with no doors and the amount of zombies is not challenging. I ve played a costum map where it spawns more then 60 zombies. I tried some change in the _zm.gsc file but with no effect. Can someone help me?

ps: sorry for my english


ModmeBot:

Reply By: Dan9977

Try putting this inside function main of yourmap.gsc

It changes the number of zombies that can be on the map at one time.

24 is the default amount and the limit is 31 I think.

level.zombie_ai_limit = 31;


ModmeBot:

Reply By: Pipi

Thank you for your help! Unfortunatly it doesn't work. In _zm.gsc it says the number of zombie_actor is limited to 31, I tried to change the value and report to the script you gave me but nothing. How some people did it?


ModmeBot:

Reply By: dkamasta

level.zombie_actor_limit = 64;
			
level.zombie_ai_limit = 64;



insane 64 zombies mod


ModmeBot:

Reply By: natesmithzombies

dkamasta
level.zombie_actor_limit = 64;
			
level.zombie_ai_limit = 64;



insane 64 zombies mod

Make sure you add this in your function main of mapname.gsc


ModmeBot:

Reply By: Pipi

Oh thank you!!