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.
Help for those learning Tcl or writing their own scripts.
-
Alboz
- Voice
- Posts: 5
- Joined: Wed Feb 17, 2010 4:06 pm
- Location: Albania
-
Contact:
Post
by Alboz »
how can I do that eggdrop join in two channel
Code: Select all
channel add #Chan {
chanmode "+nt"
idle-kick 0
stopnethack-mode 0
}
i made it
#chan,#chan1 and it doesnt work
-
nml375
- Revered One
- Posts: 2860
- Joined: Fri Aug 04, 2006 2:09 pm
Post
by nml375 »
Add one record for each channel:
Code: Select all
channel add #Chan {
chanmode "+nt"
idle-kick 0
stopnethack-mode 0
}
channel add #Chan1 {
chanmode "+nt"
idle-kick 0
stopnethack-mode 0
}
NML_375
-
Alboz
- Voice
- Posts: 5
- Joined: Wed Feb 17, 2010 4:06 pm
- Location: Albania
-
Contact:
Post
by Alboz »
thnx man its work