Timers: Difference between revisions

From SigMod
Jump to navigation Jump to search
(Simpler text based timer, overcomplicated the last one)
 
(One intermediate revision by one other user not shown)
Line 7: Line 7:
=== Text-Based Timer ===
=== Text-Based Timer ===


# Add the template to your mission by adding <code>#base reverse_timer_text_v2_simple.pop</code> to the top of your popfile
# Add the template to your mission by adding <code>#base reverse_timer_text_v3.pop</code> to the top of your popfile
#Add this block to WaveSchedule, same place as StartingCurrency<syntaxhighlight lang="javascript">
By default this will add a cyan 15 minute timer to all waves
PointTemplates
{
texttimerv2_setup
{
OnSpawnOutput
{
Target timerdisplay
Action runscriptcode
Param "timer(10,00,0.7,0.9,`0 255 255`)" // timer(minutes,seconds,xpos,ypos,`color`)
}
}
}
SpawnTemplate texttimerv2_setup [$SIGSEGV]
</syntaxhighlight>
# Change the Param if needed for time duration, the timer's position on the hud, and the timer text's color
Trigger <code>timerpause</code> using a WaveSpawn output such as FirstSpawnOutput to pause or unpause the timer


Send a <code>SetValue</code> input on <code>addtime</code> to add or remove time from the current timer (e.g. SetValue 120 with a time 3:25 becomes 5:25)
Advanced usage can be found within the [https://testing.potato.tf/tf/scripts/population/reverse_timer_text_v3.pop included popfile]
 
Send a <code>SetValue</code> input on <code>settime</code> to set the desired time (e.g SetValue 600 with a time 3:25 becomes 10:00)


=== Boss Bar Timer ===
=== Boss Bar Timer ===
Line 45: Line 27:


== Templates ==
== Templates ==
Text based timer: https://testing.potato.tf/tf/scripts/population/reverse_timer_text.pop
Text based timer: https://testing.potato.tf/tf/scripts/population/reverse_timer_text_v2_simple.pop


Boss bar timer: https://testing.potato.tf/tf/scripts/population/reverse_timer.pop
Boss bar timer: https://testing.potato.tf/tf/scripts/population/reverse_timer.pop

Latest revision as of 04:56, 6 August 2024

Both timer templates shown above

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[edit | edit source]

Both timers are simple to use and can be added into any mission running on our servers.

Text-Based Timer[edit | edit source]

  1. Add the template to your mission by adding #base reverse_timer_text_v3.pop to the top of your popfile

By default this will add a cyan 15 minute timer to all waves

Advanced usage can be found within the included popfile

Boss Bar Timer[edit | edit source]

  1. Add the template to your mission by adding #base reverse_timer.pop to the top of your popfile
  2. Add SpawnTemplate "timertest" [$SIGSEGV] to WaveSchedule, same place as StartingCurrency
  3. Trigger showtimer using a WaveSpawn output such as FirstSpawnOutput to display the bar on the HUD
  4. Trigger timer_relay to begin the countdown
  5. Send the CancelPending input to timer_relay instead of Trigger to pause the timer, it can be restarted by re-triggering

Boss bar limitations:

  1. Only one Tank/Chief boss bar can be present at once without overlapping
  2. Overrides Halloween boss bar, meaning a Halloween boss cannot be used alongside this
  3. Size of the bar cannot be changed, only the rate it decreases

Templates[edit | edit source]

Text based timer: https://testing.potato.tf/tf/scripts/population/reverse_timer_text_v2_simple.pop

Boss bar timer: https://testing.potato.tf/tf/scripts/population/reverse_timer.pop