I really need a script that automatically changes the topic of the channel on certain days at certain times, i hav searched this foum and google.. i cant find such a thing anywhere.
is there a way to make is repeat the same schedule every week, for instance, on mondays it changes at this this, this this and this time, same thing for each day of the rest of the week and next week monday its the same again?
# this bind will run "stuff" at midnight every day...
bind time - {00 00*} stuff
proc stuff args {
switch [clock format [clock sec] -format %A] {
"Sunday" {
# code for sunday
}
"Monday" {
# code for monday...etc
}
}
}