Changes between Version 25 and Version 26 of WikiStart
- Timestamp:
- 03/09/08 20:29:00 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v25 v26 24 24 * Words/parts enclosed by square brackets ([]) are optional 25 25 * Unless otherwise specified, commands are lowercase and parameters are case-insensitive 26 * Optionally, you can prefix the name of the bot when calling commands such as Bot: beer me will work the same as going beer me26 * Optionally, you can prefix the name of the bot when calling commands, for example {{{Bot: beer me}}} will work the same as simply {{{beer me}}} 27 27 28 28 === Plugins === … … 78 78 === Plugins === 79 79 * Altnick 80 81 80 * adds support for alternate nicks when the primary nick is in use 82 81 * Autojoin … … 110 109 * Quit 111 110 * {{{quit [message]}}} or {{{die [message]}}} makes the bot disconnect from the server with the given message if specified 112 * Only admins listed in the hostmask.adminini setting can use quit111 * Only admins listed in the admincommand.admins ini setting can use quit 113 112 * Reconnect 114 113 * {{{reconnect [message]}}} makes the bot disconnect with the given message if specified and then reconnect to the server, which at the same time forces all the plugin to re-read their ini settings 115 * Only admins listed in the hostmask.adminini setting can use reconnect114 * Only admins listed in the admincommand.admins ini setting can use reconnect 116 115 * Set 117 116 * {{{set <iniVar> <value>}}} writes the value to the currently loaded .ini file, do not use double quotes or whatever, just the value 118 117 * {{{set -a <iniVar> <value>}}} or {{{set append <iniVar> <value>}}} appends the value to the variable assuming it is a comma separated list 119 118 * {{{get <iniVar>}}} returns the value for that ini setting 120 * Only admins listed in the hostmask.adminini setting can get and set119 * Only admins listed in the admincommand.admins ini setting can get and set 121 120 * Toggle 122 121 * {{{enable <Plugin>}}} and {{{disable <Plugin>}}} respectively enable and disable a plugin altogether. It won't receive any events 123 * Only admins listed in the hostmask.adminini setting can use enable and disable122 * Only admins listed in the admincommand.admins ini setting can use enable and disable 124 123 * {{{mute <Plugin> [target]}}} and {{{unmute <Plugin>}}} respectively mute and unmute a plugin, which affects its ability to output messages, but won't affect its ability to receive events. For instance Logging will continue logging but will not answer {{{seen}}} or {{{heard}}} requests while it is muted. By default, the plugins will only be muted or unmuted where the command is called unless a target is specified. If target is global, then the plugin will be muted for every channel 125 * Only admins listed in the hostmask.adminini setting can specify a target124 * Only admins listed in the admincommand.admins ini setting can specify a target 126 125 * Eval 127 126 * {{{eval [-r] <code>}}} evaluates the code passed using PHP's eval command and returns the results. By default, return is prefixed to the code to return the results automatically while using the optional -r argument evaluates the code as is. If eval returns a value, it displays the results in channel, while any output is dumped to the console 128 127 * {{{exec [-c] <command>}}} runs the given command using PHP's exec command and returns the last line of the results. If the optional -c argument the entire results are dumped to the console 129 * Only admins listed in the hostmask.adminini setting can use eval and exec130 * ModuleList128 * Only admins listed in the admincommand.admins ini setting can use eval and exec 129 * !ModuleList 131 130 * {{{plugins [-h][-v][-e][-d][-m][-g][-l][-u][-a][-b]}}} returns a list of currently running plugins based on the the arguments passed; also multiple arguments can be used return multiple lists. By default, plugins will return a list of all currently running plugins 132 131 * Arguments: