Weeniedog said:
Variables:
FirstSpawnTimerWindow Timer Window -None-
Monsters Unit-Type Array(1) -None-NextLevel Integer 1
1) The timer window. Nothing relevant.
2) The type of monsters spawn. Arry should be the level.
3) Integer can mean many different things, but it should be what levelm you're on.
Weeniedog said:
Trigger: timer
Event:-
Conditions:-
Actions: Countdown timer- Start Timer as a One-shot timer that will expire in 20 seconds
Countdown timer- Creat a timer window for Timer with title first spawn in:
Set FirstSpawnTimerWindow = (Last created timer window)
The timer window. When it has expired, it'll spawn the next level.
Weeniedog said:
Trigger: Start spawn
Events: Time- Timer expires
Conditions:-
Actions: Trigger- Turn on Next level <gen>
Trigger- Run Next level <gen> chekking conditions
Trigger: Next level
Events: player 12 (Brown)'s food used becomes less then or equal to 0.00
Conditions: Monsters [NextLevel] not equal to no unit-type IsGameOver equal to false
This Runs X when the Timer window expires and there's no units on creeps on the map if you haven't lost or the Monsters have a unit-type. You should've written down the Actions too, couz they're the most important part of the trigger. Also look out for an initial trigger that's filled with;
"Set NextLevel= NextLevel + 1",
"Set Monsters[NextLevel] = <Unit-type>",
And stuff like that, that sets the level. Or else they did it another way, but that's how i made mine.