6,834
edits
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{ | {{ScriptItem2 | ||
| | |name = addCommandHandler | ||
|side = shared | |||
|type = function | |type = function | ||
| | |games = iii vc sa iv | ||
| | |desc = set a function to call when a player types the specified command in-game. | ||
| | |arg1 = string command The command name to be typed in-game in the chat box. | ||
|arg2 = function handler The scripting function to be called when a player types the command in-game in the chat box. | |||
| | |arg3 = [bool replace = false] Whether to replace the handler for the command if one is already bound to the command. | ||
| | |return = bool Whether the handler was bound to the command. | ||
| | |freturn = bool false | ||
| | |note = If replace is true, the existing callback function is replaced with the new callback function specified. | ||
| | |||
|note2 = Command names are case-insensitive.<br>If a function is already added for the command, the function is only set for the command if '''replace''' is '''bool true''' | |note2 = Command names are case-insensitive.<br>If a function is already added for the command, the function is only set for the command if '''replace''' is '''bool true''' | ||
|cb2arg1SS = string command The command that was typed. | |||
|cb2arg2SS = string parameters The parameters string that was typed. | |||
|cb2arg3SS = Client client The client that typed the command. | |||
|cb2arg1CS = string command The command that was typed. | |||
|cb2arg2CS = string parameters The parameters string that was typed. | |||
|exampleJSSS = addCommandHandler('test', function(command, text, client) | |exampleJSSS = addCommandHandler('test', function(command, text, client) | ||
{ | { |
edits