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.

Send a text to channel by joining

Old posts that have not been replied to for several years.
Locked
e
electrigga

Post by electrigga »

Is there a way, how i let my eggdrop send a text f.e. an private message when the bot is joining the channel ?

Any hints ?

_________________
--
electriggas

<font size=-1>[ This Message was edited by: electrigga on 2002-04-07 14:43 ]</font>
g
guppy
eggdrop engineer
Posts: 199
Joined: Mon Sep 24, 2001 8:00 pm
Location: Canada
Contact:

Post by guppy »

bind join - * _botjoin

proc _botjoin {nick uhost hand chan} {
if {[isbotnick $nick]} {
puthelp "PRIVMSG $chan :Hi $chan"
}
}
Locked