Timers
Two 15 minute timer templates that will fail the wave once reaching zero. One is text based while the other utilizes the Halloween boss health bar. Instructions on how to change the countdown time can be found in the template files listed below.
How to use
Both timers are simple to use and can be added into any mission running on our servers.
Text-Based Timer
- Add the template to your mission by adding
#base reverse_timer_text_v2.pop
to the top of your popfile - Add this block of text at the top of each of your Wave{} blocks
SpawnTemplate texttimerv2 InitWaveOutput { Target gamerules Action runscriptcode //////////////////////////////////////////////////////////////////////////////// // ::clock <- `minutes|seconds|color|logic_relay triggered on depleted timer` Param "::clock <- `10|00|0 255 255|timerfinish1`" //////////////////////////////////////////////////////////////////////////////// }
- Send a
SetValue
input toaddtime
with a parameter of a number to add or remove time from the timer - Send a
CallScriptFunction
input totimerdisplay
with a parameter oftimerpause
to pause the timer, ortimerunpause
to unpause instead
Boss Bar Timer
- Add the template to your mission by adding
#base reverse_timer.pop
to the top of your popfile - Add
SpawnTemplate "timertest" [$SIGSEGV]
to WaveSchedule, same place as StartingCurrency - Trigger
showtimer
using a WaveSpawn output such as FirstSpawnOutput to display the bar on the HUD - Trigger
timer_relay
to begin the countdown - Send the
CancelPending
input totimer_relay
instead ofTrigger
to pause the timer, it can be restarted by re-triggering
Boss bar limitations:
- Only one Tank/Chief boss bar can be present at once without overlapping
- Overrides Halloween boss bar, meaning a Halloween boss cannot be used alongside this
- Size of the bar cannot be changed, only the rate it decreases
Templates
Text based timer: https://testing.potato.tf/tf/scripts/population/reverse_timer_text.pop
Boss bar timer: https://testing.potato.tf/tf/scripts/population/reverse_timer.pop