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.

Problem with greet.

Old posts that have not been replied to for several years.
Locked
H
HeK

Problem with greet.

Post by HeK »

This is really stumping me, I have the channel set to +greet and all that jazz, but the bot still doesn't greet users when then enter.

Now I have info lines set for the users (of course)

but here is the twist: It will only greet me (the master/owner).

Any ideas?
H
HeK

Post by HeK »

Bleh, I just ended up writing this basic script:

Code: Select all

bind join - ????*@*.* greet_channeljoin

proc greet_channeljoin {nick uhost hand channel} {
   set handles [nick2hand $nick $channel]
   if {[validuser $handles]} {
      puthelp "PRIVMSG $channel :$nick: [getuser $handles INFO]"
   } else {
      return 0
   }
}
Locked