# Create Timer Window
Grammar — Create a timer window for timer, with the title title, using elapsed|Elapsed/Remaining time (initially visible|Visible/Hidden)
Flags —Native
|Action
Creates a new timer window for the timer. After creation the timer window must be shown for it to appear. Use “Show/Hide Timer Window” to show the window.
# Arguments
timer
— Timertext
— Titlebool
<preset::VisibleHiddenOption> — Visiblebool
<preset::ElapsedRemainingOption> — Elapsed
Returns — int
<preset::TimerWindow>
native int TimerWindowCreate(
timer inTimer,
text inTitle,
bool inShow,
bool inShowElapsed,
);
# 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:801
TimerStart(gv_mainTimer, 90.0, false, c_timeGame);
}
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/1973AF56"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
TimerWindowSetStyle(gv_mainTimerWindow, c_timerWindowStyleHorizontalTitleTime, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner01.sc2map/MapScript.galaxy:2176
}
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);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner04.sc2map/MapScript.galaxy:1277
TimerStart(gv_distractionTimer, gv_distractionTime, false, c_timeGame);
gv_distractionTimer = TimerLastStarted();
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/E6304B93"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_distractionTimerWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/traynor03.sc2map/MapScript.galaxy:2445
TimerStart(gv_twoMinuteWarning, ((gv_sURVIVETIME - 2.0) * 60.0), false, c_timeGame);
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/>"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttosh01.sc2map/MapScript.galaxy:2736
Wait(1.0, c_timeReal);
TimerWindowCreate(gv_lavaTimer, StringExternal("Param/Value/B68D184A"), true, false);
gv_lavaTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_lavaTimerWindow, StringToText("<mintotal/>:<sec2/>"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttychus03.sc2map/MapScript.galaxy:2451
TimerStart(gv_kerriganSearchTimer, gv_kerriganSearchTime, false, c_timeGame);
TriggerExecute(gt_KerriganRecalculateTimer, true, true);
TimerWindowCreate(gv_kerrigansETATIMER, StringExternal("Param/Value/6A412D92"), true, false);
TimerWindowSetStyle(TimerWindowLastCreated(), c_timerWindowStyleHorizontalTitleTime, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02a.sc2map/MapScript.galaxy:3453
libNtve_gf_SendActorMessageToUnit(gv_tHEONERAYNOR, "RefSet ::global.RaynorCommando ::Self");
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);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02a.sc2map/MapScript.galaxy:5360
libNtve_gf_SendActorMessageToUnit(gv_tHEONERAYNOR, "RefSet ::global.RaynorCommando ::Self");
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);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02b.sc2map/MapScript.galaxy:1513
TriggerExecute(gt_PlatformLinesBRAQ, true, false);
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)) {
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02b.sc2map/MapScript.galaxy:1581
TriggerExecute(gt_PlatformLinesBLAQ, true, false);
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)) {
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02b.sc2map/MapScript.galaxy:1649
TriggerExecute(gt_PlatformLinesTLAQ, true, false);
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)) {
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tvalerian02b.sc2map/MapScript.galaxy:1717
TriggerExecute(gt_PlatformLinesTRAQ, true, false);
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)) {
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul01.sc2map/MapScript.galaxy:5876
TimerStart(gv_timerEscape, 120.0, false, c_timeGame);
TimerPause(TimerLastStarted(), true);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/00C4A4C7"), true, false);
BoardItemSetTextColor(BoardLastCreated(), 1, 1, Color(100.00, 100.00, 100.00));
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tzeratul03.sc2map/MapScript.galaxy:1793
}
TimerWindowCreate(gv_zergFrenzyTimer, StringExternal("Param/Value/8BA0DBD1"), true, false);
gv_zergWormFrenzyTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_zergWormFrenzyTimerWindow, StringToText("<mintotal/>:<sec2/>"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/advancedcommand.sc2map/MapScript.galaxy:824
TriggerExecute(gt_ObjectiveKillUpdate, true, false);
TimerStart(gv_mainTimer, 150.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/C83E2D28"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
gv_mainTimerWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/economy.sc2map/MapScript.galaxy:537
TriggerExecute(gt_Attackwavez, true, false);
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/>"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/economy.sc2map/MapScript.galaxy:1755
TriggerExecute(gt_Attackwavez, true, false);
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/>"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/protosspsionics.sc2map/MapScript.galaxy:160
TimerStart(gv_mainTimer, lp_mTimeInbetweenWave, false, c_timeGame);
TriggerEnable(gt_TimerWindowWarningYellow, true);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/261AD682"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
Wait(8.0, c_timeGame);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/rushdefense.sc2map/MapScript.galaxy:478
}
TimerStart(gv_prepTimer, 57.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/32DBD2F9"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_prepTimerWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/rushdefense.sc2map/MapScript.galaxy:714
}
TimerStart(gv_prepTimer, 80.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/85654043"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_prepTimerWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/terrancovertops.sc2map/MapScript.galaxy:810
TriggerExecute(gt_TipCloakingQ, true, false);
TimerStart(gv_mainTimer, 210.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/191988A6"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
TriggerExecute(gt_PatrollingOverseers, true, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/zerginfestation.sc2map/MapScript.galaxy:793
gv_board = BoardLastCreated();
TimerStart(gv_mainTimer, 300.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/AA43E721"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
Wait(280.0, c_timeGame);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thanson02.sc2map — MapScript.galaxy:801
TimerStart(gv_mainTimer, 90.0, false, c_timeGame);
}
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/1973AF56"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
TimerWindowSetStyle(gv_mainTimerWindow, c_timerWindowStyleHorizontalTitleTime, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner01.sc2map — MapScript.galaxy:2176
}
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);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner04.sc2map — MapScript.galaxy:1277
TimerStart(gv_distractionTimer, gv_distractionTime, false, c_timeGame);
gv_distractionTimer = TimerLastStarted();
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/E6304B93"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_distractionTimerWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/traynor03.sc2map — MapScript.galaxy:2445
TimerStart(gv_twoMinuteWarning, ((gv_sURVIVETIME - 2.0) * 60.0), false, c_timeGame);
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/>"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttosh01.sc2map — MapScript.galaxy:2736
Wait(1.0, c_timeReal);
TimerWindowCreate(gv_lavaTimer, StringExternal("Param/Value/B68D184A"), true, false);
gv_lavaTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_lavaTimerWindow, StringToText("<mintotal/>:<sec2/>"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttychus03.sc2map — MapScript.galaxy:2451
TimerStart(gv_kerriganSearchTimer, gv_kerriganSearchTime, false, c_timeGame);
TriggerExecute(gt_KerriganRecalculateTimer, true, true);
TimerWindowCreate(gv_kerrigansETATIMER, StringExternal("Param/Value/6A412D92"), true, false);
TimerWindowSetStyle(TimerWindowLastCreated(), c_timerWindowStyleHorizontalTitleTime, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02a.sc2map — MapScript.galaxy:3453
libNtve_gf_SendActorMessageToUnit(gv_tHEONERAYNOR, "RefSet ::global.RaynorCommando ::Self");
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);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02a.sc2map — MapScript.galaxy:5360
libNtve_gf_SendActorMessageToUnit(gv_tHEONERAYNOR, "RefSet ::global.RaynorCommando ::Self");
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);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02b.sc2map — MapScript.galaxy:1513
TriggerExecute(gt_PlatformLinesBRAQ, true, false);
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)) {
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02b.sc2map — MapScript.galaxy:1581
TriggerExecute(gt_PlatformLinesBLAQ, true, false);
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)) {
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02b.sc2map — MapScript.galaxy:1649
TriggerExecute(gt_PlatformLinesTLAQ, true, false);
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)) {
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tvalerian02b.sc2map — MapScript.galaxy:1717
TriggerExecute(gt_PlatformLinesTRAQ, true, false);
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)) {
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul01.sc2map — MapScript.galaxy:5876
TimerStart(gv_timerEscape, 120.0, false, c_timeGame);
TimerPause(TimerLastStarted(), true);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/00C4A4C7"), true, false);
BoardItemSetTextColor(BoardLastCreated(), 1, 1, Color(100.00, 100.00, 100.00));
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tzeratul03.sc2map — MapScript.galaxy:1793
}
TimerWindowCreate(gv_zergFrenzyTimer, StringExternal("Param/Value/8BA0DBD1"), true, false);
gv_zergWormFrenzyTimerWindow = TimerWindowLastCreated();
TimerWindowSetFormat(gv_zergWormFrenzyTimerWindow, StringToText("<mintotal/>:<sec2/>"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/advancedcommand.sc2map — MapScript.galaxy:824
TriggerExecute(gt_ObjectiveKillUpdate, true, false);
TimerStart(gv_mainTimer, 150.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/C83E2D28"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<min2/>:<sec2/>"));
gv_mainTimerWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/economy.sc2map — MapScript.galaxy:537
TriggerExecute(gt_Attackwavez, true, false);
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/>"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/economy.sc2map — MapScript.galaxy:1755
TriggerExecute(gt_Attackwavez, true, false);
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/>"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/protosspsionics.sc2map — MapScript.galaxy:160
TimerStart(gv_mainTimer, lp_mTimeInbetweenWave, false, c_timeGame);
TriggerEnable(gt_TimerWindowWarningYellow, true);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/261AD682"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
Wait(8.0, c_timeGame);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/rushdefense.sc2map — MapScript.galaxy:478
}
TimerStart(gv_prepTimer, 57.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/32DBD2F9"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_prepTimerWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/rushdefense.sc2map — MapScript.galaxy:714
}
TimerStart(gv_prepTimer, 80.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/85654043"), true, false);
TimerWindowSetFormat(TimerWindowLastCreated(), StringToText("<mintotal/>:<sec2/>"));
gv_prepTimerWindow = TimerWindowLastCreated();
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/terrancovertops.sc2map — MapScript.galaxy:810
TriggerExecute(gt_TipCloakingQ, true, false);
TimerStart(gv_mainTimer, 210.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/191988A6"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
TriggerExecute(gt_PatrollingOverseers, true, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/zerginfestation.sc2map — MapScript.galaxy:793
gv_board = BoardLastCreated();
TimerStart(gv_mainTimer, 300.0, false, c_timeGame);
TimerWindowCreate(TimerLastStarted(), StringExternal("Param/Value/AA43E721"), true, false);
gv_mainTimerWindow = TimerWindowLastCreated();
Wait(280.0, c_timeGame);
campaigns/swarmstory.sc2campaign — base.sc2data/TriggerLibs/SwarmCampaignLib.galaxy:2606
// Automatic Variable Declarations
// Implementation
TimerWindowCreate(lp_timer, lp_title, lp_visible, lp_elapsed);
TimerWindowShowBorder(TimerWindowLastCreated(), false);
TimerWindowSetImageType(TimerWindowLastCreated(), c_timerWindowImageBackground, c_triggerImageTypeNineSlice);
campaigns/voidstory.sc2campaign — base.sc2data/TriggerLibs/VoidCampaignUILib.galaxy:5226
// Implementation
TimerWindowCreate(lp_timer, lp_title, lp_visible, lp_elapsed);
TimerWindowShowBorder(TimerWindowLastCreated(), true);
TimerWindowSetImageType(TimerWindowLastCreated(), c_timerWindowImageBackground, c_triggerImageTypeNineSlice);
mods/missionpacks/novacampaign.sc2mod — base.sc2data/LibNCUI.galaxy:3677
// Implementation
TimerWindowCreate(lp_timer, lp_title, lp_visible, lp_elapsed);
TimerWindowShowBorder(TimerWindowLastCreated(), true);
TimerWindowSetImageType(TimerWindowLastCreated(), c_timerWindowImageBackground, c_triggerImageTypeNineSlice);
mods/starcoop/starcoop.sc2mod — base.sc2data/LibCOUI.galaxy:5102
// Implementation
TimerWindowCreate(lp_timer, lp_title, lp_visible, lp_elapsed);
libCOUI_gv_cU_TimerWindow = TimerWindowLastCreated();
TimerWindowShowBorder(TimerWindowLastCreated(), true);
mods/voidprologue.sc2mod — base.sc2data/LibA3DDD02B.galaxy:1600
// Automatic Variable Declarations
// Implementation
TimerWindowCreate(lp_timer, lp_title, lp_visible, lp_elapsed);
TimerWindowShowBorder(TimerWindowLastCreated(), false);
TimerWindowSetImageType(TimerWindowLastCreated(), c_timerWindowImageBackground, c_triggerImageTypeNineSlice);