Timers - Please move to sc2 section
Okay so I'm making a copy of the bunker defense 10-way game in sc1 and I am making a countdown timer. Each level, I want to change the name of the timer but it's just not working.
Here's my triggers:
Okay so the timer works, level 1 spawns and all but then it doesn't change the name of the timer. Anyone know what I'm doing wrong?
~lilneo
Okay so I'm making a copy of the bunker defense 10-way game in sc1 and I am making a countdown timer. Each level, I want to change the name of the timer but it's just not working.
Here's my triggers:
Code:
//Globals...
spawntimer = (TimerCreate()) <timer>
timerwindow <TimerWindow>
//Initiate...
TimerStart(spawntimer, 120.0, false, c_timeGame)
TimerWindowCreate(spawntimer, "Wave 1 - Infestors", true, false)
TimerWindowSetTimer(timerwindow, spawntimer)
//After level 1
TimerWindowSetTitle(timerwindow, "Wave 2 - Drones in...")
~lilneo
Last edited: