I started the following script just not sure how to get it to do the following:
1. set a timer and mark it with the ID of the person we set it with
ex: !ppt 123456
2. sends back timer set, i got this part
3. sends a message to the channel when the timer is down to say 5 mins
What I have so far
Code: Select all
bind pub - !PPT ppt.proc
proc ppt.proc {nick uhost handle chan text} {
set timerid [timer 2880 [args args args args args]]
putserv "PRIVMSG $chan :Timer $timerid started"
}
Thanks for the help and advice