I found on the forum here that you can use:
bind time - "* 05 * * *" {
to execute something every hour :05 minutes..
but how can you make it do something every two or every three hours?
and another question I have is how can you check if a nickname is in your current channel? like: if { bobo ison #testing } { .... }
bind time - "* 05 * * *" will do something at 05.00 every day, not every hour as u said, then u have to use: bind time "00 * * * *" ....
the proc will be: proc something {min hour day month year} {
to see if someone is on a channel u use : [onchan nickname channel]