New in this work

Help for those learning Tcl or writing their own scripts.
Post Reply
User avatar
Alboz
Voice
Posts: 5
Joined: Wed Feb 17, 2010 4:06 pm
Location: Albania
Contact:

New in this work

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
n
nml375
Revered One
Posts: 2861
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
User avatar
Alboz
Voice
Posts: 5
Joined: Wed Feb 17, 2010 4:06 pm
Location: Albania
Contact:

Post by Alboz »

thnx man its work
Post Reply