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.

how to let my bot join a channel

Old posts that have not been replied to for several years.
Locked
f
fry

Post by fry »

is there a way to let my bot join a channel with a tcl script?

for example /msg mybot !join #mychan
C
Commari

Post by Commari »

Get LoLz's Toolzs 6.2
T
TRiNuX

Post by TRiNuX »

try this...

bind msg n !join botjoin

proc botjoin { nick host hand chan } {
channel add $chan <your chan flags here>
}

thats a start, you can make it more advanced and mess about with it a bit, remember that only works if your a global owner.
Locked