setTimer Command
Purpose:
Sets up a timer to execute hex-basic code at a given time laspse.
Syntax:
setTimer
.setTime milliseconds,call label
Comments:
Example
setTimer 60*1000*60 , "everymin"
...
everymin:
// code will be run every minute
return