i need help with creating a scipt that when someone types the trigger it lists all available bot triggers with instuctions on how to use them. plz help!
refer to tcl-commands.doc (in your eggdrop's doc dir) and check the MSG bind, when you know how to create a bind, use puthelp "NOTICE nick :message" to notice nick a specific line.
Alternatively, you can also have a look at mycmds.tcl at http://members.fortunecity.com/eggheadtcl/. This script lists all the PUB commands the user has access to.
It does not give instructions on how to use the triggers.
bind msg - help prochelp
prochelp { nick uhost hand chan text } {
puthelp "NOTICE nick :These are my commands"
puthelp "notice nick : ..."
puthelp "notice nick : ..."
puthelp "notice nick: ..."
}