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.

!help

Old posts that have not been replied to for several years.
Locked
G
Guest

Post by Guest »

I've got this bind
bind pub - !help pub:help
How am I able to use it for other help? As in (!help version) etc? I've tried
bind pub - !help version pub:ver:help
but still it display the text for !help.
b
bobjuh
Master
Posts: 268
Joined: Wed Oct 03, 2001 8:00 pm
Location: Netherlands
Contact:

Post by bobjuh »

proc pub_help {nick uhost hand channel arg} {
if {$arg == "version"} {
putserv "notice $nick : the text you want"
return 0
}
if {$arg == ""} {
putserv "notice $nick : the text you want"
return 0
}
}
bind pub - !help pub_help

This was the same question i asked yesterday :smile:



<font size=-1>[ This Message was edited by: bobjuh on 2001-12-14 08:43 ]</font>
G
Guest

Post by Guest »

Thanks :smile:
b
bobjuh
Master
Posts: 268
Joined: Wed Oct 03, 2001 8:00 pm
Location: Netherlands
Contact:

Post by bobjuh »

On 2001-12-14 20:21, plexus wrote:
Thanks :smile:
You welcome :smile:
Locked