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.
Old posts that have not been replied to for several years.
-
G
Guest
Post
by Guest »
i made a script for my bot to make it react to words on channels
bind pub - hi pub:greet
what i dont know is how to bind multiple words there, as it crashes when i do something like
bind pub - two words:someproc
-
guppy
- eggdrop engineer
- Posts: 199
- Joined: Mon Sep 24, 2001 8:00 pm
- Location: Canada
-
Contact:
Post
by guppy »
You should read tcl-commands.doc on the pubm bind - this is what documentation is for
binb pubm - "% hi there" someproc
proc someproc {nick uhost hand chan arg} {
puthelp "PRIVMSG $chan :Hi $nick"
return 0
}
-
G
Guest
Post
by Guest »
yeah, i usually read the docs, i must have missed that! thanx anyway, now my bot will be a real blabber-mouth :]