Tip of the day: The antirandom module can be a useful tool to block clients with random looking nicks.

Translations:Configuration/37/es

From UnrealIRCd documentation wiki
Jump to navigation Jump to search

Bloque de Ayuda

The help block allows you to create entries for use with the /HELPOP command.

Syntax

help <name> {
	<text-line>;
	<text-line>;
	...
};

The help:: is the value that must be passed to /helpop as a parameter, if the help:: is left out, then it will be used when no parameter is passed to /helpop. The entries for the help block are the text that will be displayed to the user when requesting the /helpop.

Default help

Pretty much everyone would want to just include the help.conf included in UnrealIRCd:

include "help.conf";

Example

help something {
        "This is some really useful text.";
        "I don't know what to say...";
};