Let me start by pasteing my small tcl.
set channel "#lamest"
set text1 "msg here"
bind time - "20 * * * *" text1time
proc text1time {n h handle ch te} {
global text1 channel
foreach chan $channel {
putserv "PRIVMSG $chan :$text1"
}
}
My question is, is there a easier way to do the timer, and if not, would that timer work the same as crontab timers? meaning could i do */20 * * * * for a 20 minute timer?