Updated Perl EVENT_TIMER (markdown)

Chris Miles
2018-01-16 14:19:04 -06:00
parent efd2f81ae8
commit 25b5d61081
+5 -1
@@ -12,7 +12,11 @@ sub EVENT_TIMER {
### Functionality Explained
EVENT_TIMER is triggered by a quest::settimer(timer_name,duration_in_seconds) or quest::settimerMS(timer_name,duration_in_milliseconds). The timer will loop until it is stopped, and EVENT_TIMER will trigger each time that the duration of the timer elapses. Timers can be stopped using the quest::stopalltimers() or quest::stoptimer(timer_name) functions.
EVENT_TIMER is triggered by a quest::settimer(timer_name,duration_in_seconds) or quest::settimerMS(timer_name,duration_in_milliseconds)
The timer will loop until it is stopped, and EVENT_TIMER will trigger each time that the duration of the timer elapses
Timers can be stopped using the quest::stopalltimers() or quest::stoptimer(timer_name) functions
### EVENT_TIMER in use