# Last Created Timer Window
Grammar — Last created timer window
Flags —Native
|Function
Returns the last timer window created using the “Create Timer Window” action.
Returns — int
<preset::TimerWindow>
native int TimerWindowLastCreated();
# Related
Category: Timer / Timer Windows
- Create Timer Window —
int
<preset::TimerWindow> — TimerWindowCreate - Last Created Timer Window —
int
<preset::TimerWindow> — TimerWindowLastCreated - Show/Hide Timer Window —
void
— TimerWindowShow - Timer Window Is Visible —
bool
— TimerWindowVisible - Destroy Timer Window —
void
— TimerWindowDestroy - Anchor Timer Window —
void
— TimerWindowSetAnchor - Move Timer Window —
void
— TimerWindowSetPosition - Reset Timer Window Position —
void
— TimerWindowResetPosition - Set Title For Timer Window —
void
— TimerWindowSetTitle - Set Timer For Timer Window —
void
— TimerWindowSetTimer - Set Time Format For Timer Window —
void
— TimerWindowSetFormat - Set Style For Timer Window —
void
— TimerWindowSetStyle - Set Gap Width For Timer Window —
void
— TimerWindowSetGapWidth - Set Height For Timer Window —
void
— TimerWindowSetFixedHeight - Set Timer Window Color —
void
— TimerWindowSetColor - Show/Hide Timer Window Border —
void
— TimerWindowShowBorder - Show/Hide Timer Window Progress Bar —
void
— TimerWindowShowProgressBar - Set Timer Window Progress Color —
void
— TimerWindowSetProgressColor - Set Timer Window Image Type —
void
— TimerWindowSetImageType - Elapsed Time Of Timer —
fixed
— TimerGetElapsed - Remaining Time Of Timer —
fixed
— TimerGetRemaining
# Examples
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thanson02.sc2map/MapScript.galaxy:802
}
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/1973AF56"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
TimerWindowSetStyle(gv_mainTimerWindow, c_timerWindowStyleHorizontalTitleTime, false);
TimerWindowSetFormat(gv_mainTimerWindow, StringToText("<mintotal/>:<sec2/>"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner01.sc2map/MapScript.galaxy:2177
TimerWindowCreate(gv_nextTrainTimer, StringExternal("Param/Value/BC9464C5"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_nextTrainWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner01.sc2map/MapScript.galaxy:2178
TimerWindowCreate(gv_nextTrainTimer, StringExternal("Param/Value/BC9464C5"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_nextTrainWindow = TimerWindowLastCreated();
while (true) {
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner01.sc2map/MapScript.galaxy:2179
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_nextTrainWindow = TimerWindowLastCreated();
while (true) {
Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner01.sc2map/MapScript.galaxy:2183
Wait(1.0, c_timeGame);
if ((gv_gameOver == true)) {
TimerWindowDestroy(TimerWindowLastCreated());
return true;
}
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner04.sc2map/MapScript.galaxy:1278
gv_distractionTimer = TimerLastStarted();
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/E6304B93"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_distractionTimerWindow = TimerWindowLastCreated();
TimerWindowSetColor(gv_distractionTimerWindow, c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner04.sc2map/MapScript.galaxy:1279
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/E6304B93"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_distractionTimerWindow = TimerWindowLastCreated();
TimerWindowSetColor(gv_distractionTimerWindow, c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
TimerStart(gv__90SecondWarning, (gv_distractionTime - 90.0), false, c_timeGame);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/traynor03.sc2map/MapScript.galaxy:2446
TimerStart(gv_oneMinuteWarning, ((gv_sURVIVETIME - 1.0) * 60.0), false, c_timeGame);
TimerWindowCreate(gv_evacuationTimer, StringExternal("Param/Value/4B8241F4"), true, false);
gv_evacuationTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_evacuationTimerWindow, StringToText("<min2/>:<sec2/>"));
TimerWindowSetColor(gv_evacuationTimerWindow, c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttosh01.sc2map/MapScript.galaxy:2737
Wait(1.0, c_timeReal);
TimerWindowCreate(gv_lavaTimer, StringExternal("Param/Value/B68D184A"), true, false);
gv_lavaTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_lavaTimerWindow, StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(gv_lavaTimerWindow, c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttychus03.sc2map/MapScript.galaxy:2452
TriggerExecute(gt_KerriganRecalculateTimer, true, true);
TimerWindowCreate(gv_kerrigansETATIMER, StringExternal("Param/Value/6A412D92"), true, false);
TimerWindowSetStyle(TimerWindowLastCreated(), c_timerWindowStyleHorizontalTitleTime, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttychus03.sc2map/MapScript.galaxy:2453
TimerWindowCreate(gv_kerrigansETATIMER, StringExternal("Param/Value/6A412D92"), true, false);
TimerWindowSetStyle(TimerWindowLastCreated(), c_timerWindowStyleHorizontalTitleTime, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_kerrigansETAWINDOW = TimerWindowLastCreated();
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttychus03.sc2map/MapScript.galaxy:2454
TimerWindowSetStyle(TimerWindowLastCreated(), c_timerWindowStyleHorizontalTitleTime, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_kerrigansETAWINDOW = TimerWindowLastCreated();
TriggerEnable(gt_KerriganMoveOutRepeater, true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttychus03.sc2map/MapScript.galaxy:2455
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_kerrigansETAWINDOW = TimerWindowLastCreated();
TriggerEnable(gt_KerriganMoveOutRepeater, true);
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02a.sc2map/MapScript.galaxy:3454
TimerStart(gv_holdoutTimer, 150.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/23FF264F"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_holdoutTimerWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02a.sc2map/MapScript.galaxy:3455
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/23FF264F"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_holdoutTimerWindow = TimerWindowLastCreated();
gv_limitNydusWormSpawnsInHoldout = true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02a.sc2map/MapScript.galaxy:3456
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_holdoutTimerWindow = TimerWindowLastCreated();
gv_limitNydusWormSpawnsInHoldout = true;
gv_nydusWormsActiveInHoldout = 0;
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02a.sc2map/MapScript.galaxy:5361
TimerStart(gv_holdoutTimer, 150.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/8B3216F3"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_holdoutTimerWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02a.sc2map/MapScript.galaxy:5362
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/8B3216F3"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_holdoutTimerWindow = TimerWindowLastCreated();
gv_limitNydusWormSpawnsInHoldout = true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02a.sc2map/MapScript.galaxy:5363
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_holdoutTimerWindow = TimerWindowLastCreated();
gv_limitNydusWormSpawnsInHoldout = true;
gv_nydusWormsActiveInHoldout = 0;
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02b.sc2map/MapScript.galaxy:1514
TimerStart(gv_platformBlowsTimerArea01, 45.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/4C8584A2"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
if ((gv_inCinematic == true)) {
TimerPause(TimerLastStarted(), true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02b.sc2map/MapScript.galaxy:1523
gv_timerReadytoBlowArea01 = true;
libNtve_gf_WaitForTimer(gv_platformBlowsTimerArea01, 0.0, false);
TimerWindowDestroy(TimerWindowLastCreated());
while (gv_midCinematicIsBusy) {
Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02b.sc2map/MapScript.galaxy:1582
TimerStart(gv_platformBlowsTimerArea02, 45.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/6A242E34"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
if ((gv_inCinematic == true)) {
TimerPause(TimerLastStarted(), true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02b.sc2map/MapScript.galaxy:1591
gv_timerReadytoBlowArea02 = true;
libNtve_gf_WaitForTimer(gv_platformBlowsTimerArea02, 0.0, false);
TimerWindowDestroy(TimerWindowLastCreated());
while (gv_midCinematicIsBusy) {
Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02b.sc2map/MapScript.galaxy:1650
TimerStart(gv_platformBlowsTimerArea03, 45.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/2F9B939E"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
if ((gv_inCinematic == true)) {
TimerPause(TimerLastStarted(), true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02b.sc2map/MapScript.galaxy:1659
gv_timerReadytoBlowArea03 = true;
libNtve_gf_WaitForTimer(gv_platformBlowsTimerArea03, 0.0, false);
TimerWindowDestroy(TimerWindowLastCreated());
while (gv_midCinematicIsBusy) {
Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02b.sc2map/MapScript.galaxy:1718
TimerStart(gv_platformBlowsTimerArea04, 45.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/AD56BF00"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
if ((gv_inCinematic == true)) {
TimerPause(TimerLastStarted(), true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02b.sc2map/MapScript.galaxy:1727
gv_timerReadytoBlowArea04 = true;
libNtve_gf_WaitForTimer(gv_platformBlowsTimerArea04, 0.0, false);
TimerWindowDestroy(TimerWindowLastCreated());
while (gv_midCinematicIsBusy) {
Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul01.sc2map/MapScript.galaxy:5878
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/00C4A4C7"), true, false);
BoardItemSetTextColor(BoardLastCreated(), 1, 1, Color(100.00, 100.00, 100.00));
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(100.00, 0.00, 0.00), 0.0);
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul01.sc2map/MapScript.galaxy:5879
BoardItemSetTextColor(BoardLastCreated(), 1, 1, Color(100.00, 100.00, 100.00));
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(100.00, 0.00, 0.00), 0.0);
return true;
}
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul03.sc2map/MapScript.galaxy:1794
TimerWindowCreate(gv_zergFrenzyTimer, StringExternal("Param/Value/8BA0DBD1"), true, false);
gv_zergWormFrenzyTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_zergWormFrenzyTimerWindow, StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(gv_zergWormFrenzyTimerWindow, c_timerWindowColorTime, Color(0.00, 100.00, 100.00), 0.0);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/advancedcommand.sc2map/MapScript.galaxy:825
TimerStart(gv_mainTimer, 150.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/C83E2D28"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
gv_mainTimerWindow = TimerWindowLastCreated();
Wait(130.0, c_timeGame);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/advancedcommand.sc2map/MapScript.galaxy:826
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/C83E2D28"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
gv_mainTimerWindow = TimerWindowLastCreated();
Wait(130.0, c_timeGame);
auto07B0E3C2_n = 10;
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/economy.sc2map/MapScript.galaxy:538
TimerStart(gv_mainTimer, gv_mainTimerAmount, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/07E62F5C"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_mainTimerWindow, StringToText("<min2/>:<sec2/>"));
TriggerEnable(gt_TimerWindowWarning, true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/economy.sc2map/MapScript.galaxy:1756
TimerStart(gv_mainTimer, gv_mainTimerAmount, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/5C2DB8E5"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_mainTimerWindow, StringToText("<min2/>:<sec2/>"));
TriggerEnable(gt_TimerWindowWarning, true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/protosspsionics.sc2map/MapScript.galaxy:161
TriggerEnable(gt_TimerWindowWarningYellow, true);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/261AD682"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
Wait(8.0, c_timeGame);
if ((lp_mEnemyACount > 0)) {
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/rushdefense.sc2map/MapScript.galaxy:479
TimerStart(gv_prepTimer, 57.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/32DBD2F9"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_prepTimerWindow = TimerWindowLastCreated();
gf_SetTotalPlayerDeaths();
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/rushdefense.sc2map/MapScript.galaxy:480
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/32DBD2F9"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_prepTimerWindow = TimerWindowLastCreated();
gf_SetTotalPlayerDeaths();
if ((gv_totalPlayerDeaths > gv_silverLosses)) {
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/rushdefense.sc2map/MapScript.galaxy:715
TimerStart(gv_prepTimer, 80.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/85654043"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_prepTimerWindow = TimerWindowLastCreated();
gf_SetTotalPlayerDeaths();
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/rushdefense.sc2map/MapScript.galaxy:716
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/85654043"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_prepTimerWindow = TimerWindowLastCreated();
gf_SetTotalPlayerDeaths();
if ((gv_totalPlayerDeaths > gv_silverLosses)) {
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/terrancovertops.sc2map/MapScript.galaxy:811
TimerStart(gv_mainTimer, 210.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/191988A6"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
TriggerExecute(gt_PatrollingOverseers, true, false);
TriggerEnable(gt_FinishUnitsDead, true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/zerginfestation.sc2map/MapScript.galaxy:794
TimerStart(gv_mainTimer, 300.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/AA43E721"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
Wait(280.0, c_timeGame);
auto866C60A5_n = 10;
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thanson02.sc2map — MapScript.galaxy:802
}
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/1973AF56"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
TimerWindowSetStyle(gv_mainTimerWindow, c_timerWindowStyleHorizontalTitleTime, false);
TimerWindowSetFormat(gv_mainTimerWindow, StringToText("<mintotal/>:<sec2/>"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner01.sc2map — MapScript.galaxy:2177
TimerWindowCreate(gv_nextTrainTimer, StringExternal("Param/Value/BC9464C5"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_nextTrainWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner01.sc2map — MapScript.galaxy:2178
TimerWindowCreate(gv_nextTrainTimer, StringExternal("Param/Value/BC9464C5"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_nextTrainWindow = TimerWindowLastCreated();
while (true) {
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner01.sc2map — MapScript.galaxy:2179
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_nextTrainWindow = TimerWindowLastCreated();
while (true) {
Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner01.sc2map — MapScript.galaxy:2183
Wait(1.0, c_timeGame);
if ((gv_gameOver == true)) {
TimerWindowDestroy(TimerWindowLastCreated());
return true;
}
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner04.sc2map — MapScript.galaxy:1278
gv_distractionTimer = TimerLastStarted();
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/E6304B93"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_distractionTimerWindow = TimerWindowLastCreated();
TimerWindowSetColor(gv_distractionTimerWindow, c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner04.sc2map — MapScript.galaxy:1279
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/E6304B93"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_distractionTimerWindow = TimerWindowLastCreated();
TimerWindowSetColor(gv_distractionTimerWindow, c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
TimerStart(gv__90SecondWarning, (gv_distractionTime - 90.0), false, c_timeGame);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/traynor03.sc2map — MapScript.galaxy:2446
TimerStart(gv_oneMinuteWarning, ((gv_sURVIVETIME - 1.0) * 60.0), false, c_timeGame);
TimerWindowCreate(gv_evacuationTimer, StringExternal("Param/Value/4B8241F4"), true, false);
gv_evacuationTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_evacuationTimerWindow, StringToText("<min2/>:<sec2/>"));
TimerWindowSetColor(gv_evacuationTimerWindow, c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttosh01.sc2map — MapScript.galaxy:2737
Wait(1.0, c_timeReal);
TimerWindowCreate(gv_lavaTimer, StringExternal("Param/Value/B68D184A"), true, false);
gv_lavaTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_lavaTimerWindow, StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(gv_lavaTimerWindow, c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttychus03.sc2map — MapScript.galaxy:2452
TriggerExecute(gt_KerriganRecalculateTimer, true, true);
TimerWindowCreate(gv_kerrigansETATIMER, StringExternal("Param/Value/6A412D92"), true, false);
TimerWindowSetStyle(TimerWindowLastCreated(), c_timerWindowStyleHorizontalTitleTime, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttychus03.sc2map — MapScript.galaxy:2453
TimerWindowCreate(gv_kerrigansETATIMER, StringExternal("Param/Value/6A412D92"), true, false);
TimerWindowSetStyle(TimerWindowLastCreated(), c_timerWindowStyleHorizontalTitleTime, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_kerrigansETAWINDOW = TimerWindowLastCreated();
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttychus03.sc2map — MapScript.galaxy:2454
TimerWindowSetStyle(TimerWindowLastCreated(), c_timerWindowStyleHorizontalTitleTime, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_kerrigansETAWINDOW = TimerWindowLastCreated();
TriggerEnable(gt_KerriganMoveOutRepeater, true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttychus03.sc2map — MapScript.galaxy:2455
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_kerrigansETAWINDOW = TimerWindowLastCreated();
TriggerEnable(gt_KerriganMoveOutRepeater, true);
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02a.sc2map — MapScript.galaxy:3454
TimerStart(gv_holdoutTimer, 150.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/23FF264F"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_holdoutTimerWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02a.sc2map — MapScript.galaxy:3455
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/23FF264F"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_holdoutTimerWindow = TimerWindowLastCreated();
gv_limitNydusWormSpawnsInHoldout = true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02a.sc2map — MapScript.galaxy:3456
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_holdoutTimerWindow = TimerWindowLastCreated();
gv_limitNydusWormSpawnsInHoldout = true;
gv_nydusWormsActiveInHoldout = 0;
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02a.sc2map — MapScript.galaxy:5361
TimerStart(gv_holdoutTimer, 150.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/8B3216F3"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_holdoutTimerWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02a.sc2map — MapScript.galaxy:5362
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/8B3216F3"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_holdoutTimerWindow = TimerWindowLastCreated();
gv_limitNydusWormSpawnsInHoldout = true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02a.sc2map — MapScript.galaxy:5363
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(0.00, 100.00, 0.00), 0.0);
gv_holdoutTimerWindow = TimerWindowLastCreated();
gv_limitNydusWormSpawnsInHoldout = true;
gv_nydusWormsActiveInHoldout = 0;
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02b.sc2map — MapScript.galaxy:1514
TimerStart(gv_platformBlowsTimerArea01, 45.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/4C8584A2"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
if ((gv_inCinematic == true)) {
TimerPause(TimerLastStarted(), true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02b.sc2map — MapScript.galaxy:1523
gv_timerReadytoBlowArea01 = true;
libNtve_gf_WaitForTimer(gv_platformBlowsTimerArea01, 0.0, false);
TimerWindowDestroy(TimerWindowLastCreated());
while (gv_midCinematicIsBusy) {
Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02b.sc2map — MapScript.galaxy:1582
TimerStart(gv_platformBlowsTimerArea02, 45.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/6A242E34"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
if ((gv_inCinematic == true)) {
TimerPause(TimerLastStarted(), true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02b.sc2map — MapScript.galaxy:1591
gv_timerReadytoBlowArea02 = true;
libNtve_gf_WaitForTimer(gv_platformBlowsTimerArea02, 0.0, false);
TimerWindowDestroy(TimerWindowLastCreated());
while (gv_midCinematicIsBusy) {
Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02b.sc2map — MapScript.galaxy:1650
TimerStart(gv_platformBlowsTimerArea03, 45.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/2F9B939E"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
if ((gv_inCinematic == true)) {
TimerPause(TimerLastStarted(), true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02b.sc2map — MapScript.galaxy:1659
gv_timerReadytoBlowArea03 = true;
libNtve_gf_WaitForTimer(gv_platformBlowsTimerArea03, 0.0, false);
TimerWindowDestroy(TimerWindowLastCreated());
while (gv_midCinematicIsBusy) {
Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02b.sc2map — MapScript.galaxy:1718
TimerStart(gv_platformBlowsTimerArea04, 45.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/AD56BF00"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
if ((gv_inCinematic == true)) {
TimerPause(TimerLastStarted(), true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02b.sc2map — MapScript.galaxy:1727
gv_timerReadytoBlowArea04 = true;
libNtve_gf_WaitForTimer(gv_platformBlowsTimerArea04, 0.0, false);
TimerWindowDestroy(TimerWindowLastCreated());
while (gv_midCinematicIsBusy) {
Wait(1.0, c_timeGame);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul01.sc2map — MapScript.galaxy:5878
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/00C4A4C7"), true, false);
BoardItemSetTextColor(BoardLastCreated(), 1, 1, Color(100.00, 100.00, 100.00));
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(100.00, 0.00, 0.00), 0.0);
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul01.sc2map — MapScript.galaxy:5879
BoardItemSetTextColor(BoardLastCreated(), 1, 1, Color(100.00, 100.00, 100.00));
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
TimerWindowSetColor(TimerWindowLastCreated(), c_timerWindowColorTime, Color(100.00, 0.00, 0.00), 0.0);
return true;
}
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul03.sc2map — MapScript.galaxy:1794
TimerWindowCreate(gv_zergFrenzyTimer, StringExternal("Param/Value/8BA0DBD1"), true, false);
gv_zergWormFrenzyTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_zergWormFrenzyTimerWindow, StringToText("<mintotal/>:<sec2/>"));
TimerWindowSetColor(gv_zergWormFrenzyTimerWindow, c_timerWindowColorTime, Color(0.00, 100.00, 100.00), 0.0);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/advancedcommand.sc2map — MapScript.galaxy:825
TimerStart(gv_mainTimer, 150.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/C83E2D28"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
gv_mainTimerWindow = TimerWindowLastCreated();
Wait(130.0, c_timeGame);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/advancedcommand.sc2map — MapScript.galaxy:826
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/C83E2D28"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
gv_mainTimerWindow = TimerWindowLastCreated();
Wait(130.0, c_timeGame);
auto07B0E3C2_n = 10;
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/economy.sc2map — MapScript.galaxy:538
TimerStart(gv_mainTimer, gv_mainTimerAmount, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/07E62F5C"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_mainTimerWindow, StringToText("<min2/>:<sec2/>"));
TriggerEnable(gt_TimerWindowWarning, true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/economy.sc2map — MapScript.galaxy:1756
TimerStart(gv_mainTimer, gv_mainTimerAmount, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/5C2DB8E5"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_mainTimerWindow, StringToText("<min2/>:<sec2/>"));
TriggerEnable(gt_TimerWindowWarning, true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/protosspsionics.sc2map — MapScript.galaxy:161
TriggerEnable(gt_TimerWindowWarningYellow, true);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/261AD682"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
Wait(8.0, c_timeGame);
if ((lp_mEnemyACount > 0)) {
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/rushdefense.sc2map — MapScript.galaxy:479
TimerStart(gv_prepTimer, 57.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/32DBD2F9"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_prepTimerWindow = TimerWindowLastCreated();
gf_SetTotalPlayerDeaths();
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/rushdefense.sc2map — MapScript.galaxy:480
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/32DBD2F9"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_prepTimerWindow = TimerWindowLastCreated();
gf_SetTotalPlayerDeaths();
if ((gv_totalPlayerDeaths > gv_silverLosses)) {
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/rushdefense.sc2map — MapScript.galaxy:715
TimerStart(gv_prepTimer, 80.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/85654043"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_prepTimerWindow = TimerWindowLastCreated();
gf_SetTotalPlayerDeaths();
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/rushdefense.sc2map — MapScript.galaxy:716
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/85654043"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_prepTimerWindow = TimerWindowLastCreated();
gf_SetTotalPlayerDeaths();
if ((gv_totalPlayerDeaths > gv_silverLosses)) {
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/terrancovertops.sc2map — MapScript.galaxy:811
TimerStart(gv_mainTimer, 210.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/191988A6"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
TriggerExecute(gt_PatrollingOverseers, true, false);
TriggerEnable(gt_FinishUnitsDead, true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/zerginfestation.sc2map — MapScript.galaxy:794
TimerStart(gv_mainTimer, 300.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/AA43E721"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
Wait(280.0, c_timeGame);
auto866C60A5_n = 10;
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/evolution/zevolutionbaneling.sc2map/MapScript.galaxy:1696
TriggerEnable(TriggerGetCurrent(), false);
libSwaC_gf_TimerWindowCreate2(gv_lavaTimer, StringExternal("Param/Value/36910D6E"), true, false, 1);
gv_lavaTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_lavaTimerWindow, StringToText("<mintotal/>:<sec2/>"));
return true;
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zchar01.sc2map/MapScript.galaxy:3260
}
libSwaC_gf_TimerWindowCreate2(TimerLastStarted(), StringExternal("Param/Value/BA756A5C"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Positive);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
libNtve_gf_WaitForTimer(TimerLastStarted(), 0.0, false);
TimerWindowDestroy(TimerWindowLastCreated());
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zchar01.sc2map/MapScript.galaxy:3262
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
libNtve_gf_WaitForTimer(TimerLastStarted(), 0.0, false);
TimerWindowDestroy(TimerWindowLastCreated());
UnitCreate(1, "ZaGara", 0, gv_pLAYER_02_ZERG, PointFromId(3), 270.0);
UnitSetPropertyFixed(gv_zagara, c_unitPropLifeMax, gv_zagaraMaximumLife);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zchar01.sc2map/MapScript.galaxy:3365
}
libSwaC_gf_TimerWindowCreate2(TimerLastStarted(), StringExternal("Param/Value/50FB92C3"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Positive);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
libNtve_gf_WaitForTimer(TimerLastStarted(), 0.0, false);
TimerWindowDestroy(TimerWindowLastCreated());
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zchar01.sc2map/MapScript.galaxy:3367
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
libNtve_gf_WaitForTimer(TimerLastStarted(), 0.0, false);
TimerWindowDestroy(TimerWindowLastCreated());
libNtve_gf_PauseUnit(gv_zagara, false);
UnitSetState(gv_zagara, c_unitStateInvulnerable, false);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zchar03.sc2map/MapScript.galaxy:1602
TimerStart(gv_timedAttackTimer, 160.0, false, c_timeAI);
libSwaC_gf_TimerWindowCreate2(gv_timedAttackTimer, StringExternal("Param/Value/D20F854E"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Negative);
gv_timedAttackTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_timedAttackTimerWindow, StringToText("<min2/>:<sec2/>"));
if ((libHots_gf_DifficultyValueInt2(0, 0, 1) == 1)) {
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zexpedition01.sc2map/MapScript.galaxy:2085
gv_flashFreeze_Timer = TimerLastStarted();
libSwaC_gf_TimerWindowCreate2(gv_flashFreeze_Timer, StringExternal("Param/Value/5B58F497"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Positive);
gv_flashFreezeDuration_Window = TimerWindowLastCreated();
TimerWindowSetFormat(gv_flashFreezeDuration_Window, StringToText("<mintotal/>:<sec2/>"));
return true;
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zexpedition01.sc2map/MapScript.galaxy:2108
gv_nextFlashFreeze_Timer = TimerLastStarted();
libSwaC_gf_TimerWindowCreate2(gv_nextFlashFreeze_Timer, StringExternal("Param/Value/523099E4"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Positive);
gv_nextFlashFreeze_Window = TimerWindowLastCreated();
TimerWindowSetFormat(gv_nextFlashFreeze_Window, StringToText("<mintotal/>:<sec2/>"));
return true;
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zexpedition03.sc2map/MapScript.galaxy:5191
TimerStart(gv_countdownTimer, gv_runoutTime, false, c_timeAI);
libSwaC_gf_TimerWindowCreate2(gv_countdownTimer, StringExternal("Param/Value/1893818B"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Negative);
gv_countdownTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_countdownTimerWindow, StringToText("<mintotal/>:<sec2/>"));
TriggerExecute(gt_StalkerAttackAfterWarpDriveDestroyed, true, false);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zhybrid02.sc2map/MapScript.galaxy:787
if ((gv_psionicAssaultTimerWindow == c_timerWindowNone)) {
libSwaC_gf_TimerWindowCreate2(gv_channelTimer, StringExternal("Param/Value/093C6615"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Negative);
gv_psionicAssaultTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
}
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zhybrid02.sc2map/MapScript.galaxy:788
libSwaC_gf_TimerWindowCreate2(gv_channelTimer, StringExternal("Param/Value/093C6615"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Negative);
gv_psionicAssaultTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
}
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zkorhal01.sc2map/MapScript.galaxy:3015
TriggerEnable(TriggerGetCurrent(), false);
libSwaC_gf_TimerWindowCreate2(gv_dropTimer, StringExternal("Param/Value/FE2D95A7"), false, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Positive);
gv_dropTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_dropTimerWindow, StringToText("<mintotal/>:<sec2/>"));
return true;
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zkorhal02.sc2map/MapScript.galaxy:722
if ((gv_fieldPowerTimerWindow == c_timerWindowNone)) {
libSwaC_gf_TimerWindowCreate2(gv_psifieldpowerup, StringExternal("Param/Value/97A09440"), false, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Positive);
gv_fieldPowerTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_fieldPowerTimerWindow, StringToText("<mintotal/>:<sec2/>"));
}
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zlab02.sc2map/MapScript.galaxy:4918
TimerStart(gv_s2_LockdownTimer, gv_s2_Lockdown_Time[1], false, c_timeGame);
libSwaC_gf_TimerWindowCreate2(TimerLastStarted(), StringExternal("Param/Value/7966C20F"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Negative);
gv_s2_LockdownTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_s2_LockdownTimerWindow, StringToText("<mintotal/>:<sec2/>"));
libNtve_gf_WaitForTimer(gv_s2_LockdownTimer, 45.0, false);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zlab03.sc2map/MapScript.galaxy:5566
TimerStart(gv_reinforcement_Timer, lv_c_ReinforcementWaitDuration, false, c_timeAI);
libSwaC_gf_TimerWindowCreate2(gv_reinforcement_Timer, StringExternal("Param/Value/5BBAB076"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Positive);
gv_holdOut_Window = TimerWindowLastCreated();
TimerWindowSetFormat(gv_holdOut_Window, StringToText("<min2/>:<sec2/>"));
libNtve_gf_WaitForTimer(gv_reinforcement_Timer, 300.0, false);
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zspace02.sc2map/MapScript.galaxy:4937
TriggerExecute(gt__2ShipIsExploding, true, false);
libSwaC_gf_TimerWindowCreate2(TimerLastStarted(), StringExternal("Param/Value/4ECE024A"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Negative);
gv_objective_EscapeTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
return true;
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zspace02.sc2map/MapScript.galaxy:4938
libSwaC_gf_TimerWindowCreate2(TimerLastStarted(), StringExternal("Param/Value/4ECE024A"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Negative);
gv_objective_EscapeTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
return true;
}
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zzerus02.sc2map/MapScript.galaxy:1631
Wait(3.0, c_timeReal);
libSwaC_gf_TimerWindowCreate2(TimerLastStarted(), StringExternal("Param/Value/36B66BCC"), true, false, libSwaC_ge_CampaignTimerPositiveNegativeOptions_Positive);
gv_holdoutTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_holdoutTimerWindow, StringToText("<mintotal/>:<sec2/>"));
return true;