
Posts
360
Respect
62Add +1
Forum Rank
Perk Hacker
Primary Group
Donator ♥
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
set_zombie_var( "zombie_max_ai", 24 ); //this is how many are in the map at one time. be careful changing this
set_zombie_var( "zombie_ai_per_player", 6 ); //this is how many zombies per player at round 1 and is multiplied for each round
else if ( level.first_round )
{
max = int( max * 0.2 ); //change the .2 to a higher decimal for larger amount on round 1
}
else if (level.round_number < 3)
{
max = int( max * 0.4 ); //change the .4 to a higher decimal for larger amount on round 2
}
else if (level.round_number < 4)
{
max = int( max * 0.6 ); //change the .6 to a higher decimal for larger amount on round 3
}
else if (level.round_number < 5)
{
max = int( max * 0.8 ); // change the .8 to a higher decimal for larger amount on round 4
}
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |

Hey thanks i have set that and it changes the amount of zombies spawned , is there anyway o can set a specific round to reset the zombies amount to make it back to normal . Just so the early waves have more spawning but not to make wave 20 + have milions of zombies
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
