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.

Disable help

Old posts that have not been replied to for several years.
Locked
T
TomSommer

Disable help

Post by TomSommer »

How do I disable /msg [bot] help

?
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

place this linbe at the base of your config file

Code: Select all

unbind dcc "" help *dcc:help
T
TomSommer

Post by TomSommer »

Does not work.... It returns the name of the bind that was removed, and that is help, but

Code: Select all

/msg [bot] help
still returns the mass notice response
d
darko``
Op
Posts: 121
Joined: Sun Sep 08, 2002 5:33 pm
Location: Malta

Post by darko`` »

You have to unbind msg - *msg:help
Ignorant and lazy people will save 30 minutes by chosing simple config file. Smart ones will save 3000 minutes of *everyone's* time by opting for complete config file.
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Not true.

Read the discription of BIND MSG in tcl-commands.doc.

A: This bind does not work with masks. B: You have not given enought parameters
unbind <type> <flags> <keyword/mask> <proc-name>
You have given the keyword/mask parameter the function used for the command.

Unbind should be used in exactly the same way it was used to reate the bind.

As such, you have to specify the command, and not just *

My mistake was to use "" as the flags.

It should be

unbind msg - help *msg:help
T
TomSommer

Post by TomSommer »

Thank you my good sir
d
darko``
Op
Posts: 121
Joined: Sun Sep 08, 2002 5:33 pm
Location: Malta

Post by darko`` »

Yeah, that's what happenes when you stumbe upon something obviously wrong (dcc instead of msg) and not pay attention to other details - it was meant only to suggest that it was msg in question. Anyway, my appologies for incorect advice.
Ignorant and lazy people will save 30 minutes by chosing simple config file. Smart ones will save 3000 minutes of *everyone's* time by opting for complete config file.
Locked