Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
-
ccrossman
- Voice
- Posts: 2
- Joined: Mon Nov 14, 2005 9:59 pm
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-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?
-
ccrossman
- Voice
- Posts: 2
- Joined: Mon Nov 14, 2005 9:59 pm
Post
by ccrossman »
Perfect. THank you!!