From 25b5d6108176f270286ebf4086dc5261fa1e0cbf Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Tue, 16 Jan 2018 14:19:04 -0600 Subject: [PATCH] Updated Perl EVENT_TIMER (markdown) --- Perl-EVENT_TIMER.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Perl-EVENT_TIMER.md b/Perl-EVENT_TIMER.md index b712687..1ed2343 100755 --- a/Perl-EVENT_TIMER.md +++ b/Perl-EVENT_TIMER.md @@ -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