This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post . Click the X in the top right-corner of this box to dismiss this message.
Old posts that have not been replied to for several years.
Bader
Voice
Posts: 35 Joined: Sat Mar 12, 2005 5:34 am
Post
by Bader » Sun Jun 26, 2005 2:13 pm
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
Sir_Fz
Revered One
Posts: 3794 Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:
Post
by Sir_Fz » Sun Jun 26, 2005 3:23 pm
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]
}
use
.chanset #channel +cyclechan to let the bot cycle this channel every 2 minutes.
PS: you can also add a part message like this:
Code: Select all
putserv "PART $chan :message here"