Survival mode help?

Liu-Kang

Member
Hello I gotta question thing about making a survival mode type deal. What I'm trying to make is a series of enemy waves, not all coming at the same time basically. The level will stay in the same position but I want it so enemies will come in certain set groups. Is this possible to rig?
 
It's doable, you need to set grouping such as this:

group 4 4 # group 1
at 0

spawn enemy
coords 450 225
at 0

spawn enemy
coords 450 225
at 0

spawn enemy
coords 450 225
at 0

spawn enemy
coords 450 225
at 0

spawn enemy
coords 450 225
at 0

spawn enemy
coords 450 225
at 0

group 1 1
at 0

group 4 4 # group 2
at 0

spawn enemy
coords 450 225
at 0

spawn enemy
coords 450 225
at 0

spawn enemy
coords 450 225
at 0

spawn enemy
coords 450 225
at 0

spawn enemy
coords 450 225
at 0

spawn enemy
coords 450 225
at 0

group 1 1
at 0
...

In this setting, enemies are spawned in groups. Next group won't be spawned until the current group is defeated
 
Back
Top Bottom