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.

Eggdrop Responder

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
c
ccrossman
Voice
Posts: 2
Joined: Mon Nov 14, 2005 9:59 pm

Eggdrop Responder

Post by ccrossman »

I am looking for simple code to have an eggdrop respond in notice in irc to users to type things like @commands and what not. Thanks.
T
T-Xorcist
Halfop
Posts: 47
Joined: Mon Nov 14, 2005 6:36 pm
Location: Netherlands
Contact:

Post by T-Xorcist »

Code: Select all

bind pub -|- @commands proc:commands

proc proc:commands {nick uhost hand chan text} {
  putserv "NOTICE $nick :These are my commands:"
  putserv "NOTICE $nick : 1. ..........."
}
Something like this?
c
ccrossman
Voice
Posts: 2
Joined: Mon Nov 14, 2005 9:59 pm

Post by ccrossman »

Perfect. THank you!!
Post Reply