[trigger]Start Timer
    Events
        Time - Elapsed game time is 0.00 seconds
    Conditions
    Actions
        Set count = 1
        Countdown Timer - Start timer as a Repeating timer that will expire in 10.00 seconds
        Countdown Timer - Create a timer window for timer with title (String(count))
        Set window = (Last created timer window)
[/trigger]
[trigger]Timer Expire
    Events
        Time - timer expires
    Conditions
    Actions
        Set count = (count + 1)
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                count Less than or equal to 5
            Then - Actions
                Countdown Timer - Change the title of window to (String(count))
            Else - Actions
                Countdown Timer - Pause timer
                Countdown Timer - Destroy window
[/trigger]