Timer
Timer are normally used to display messages after a certain period of time.
They are also often used to keep track of the maximum amount of time for an action to complete.
TODO: Timer Constructors
Methods
Timer.Check(name)
Check if a timer object is expired or not.
Return
Booleantrue if not expired, false if expired
Timer.Create(name, delay, message)
Timer.Create(name, delay, message)
Create a timer with the provided name that will expire in ms_timer time (in milliseconds)
Parameters
nameStringTimer name.
delayInt32Delay in milliseconds.
messageStringMessage displayed at timeouit.
Timer.Remaining(name)
Get remaining time for a named timer
Return
Int32Returns the milliseconds remaining for a timer.