how can i , mke tcl. always 2mins, the bot part then rejoin
like
(08،57،pm) * Parts: MadMolly (molly@fbi.raided.us)
(08،57،pm) * Joins: MadMolly (molly@fbi.raided.us)
and thanks
Code: Select all
setudef flag cyclechan
if {[timerexists cycle:chans] == ""} {
timer 2 [list cycle:chans]
}
proc cycle:chans {} {
foreach chan [channels] {
if {[channel get $chan cyclechan]} {
putserv "PART $chan"
}
}
timer 2 [list cycle:chans]
}Code: Select all
putserv "PART $chan :message here"