Commands
The Commands module provides a simple interface to register server commands with built-in permission checking and chat suggestions.
Accessing the Module
Server
register_command(command, required_rank, help, params, handler)
Registers a new server command.
Parameters
Name
Type
Description
command
string
The command name to register (e.g., "/kick"
).
required_rank
`string
table`
help
string
Help text for the command (displayed in suggestions).
params
table
Array of parameter objects with name
and help
fields.
handler
function
Function to execute when the command is run. Signature: function(source, args, raw)
Example
Client
get_chat_suggestions()
Requests the server to send updated chat suggestions to the client.
Parameters
Name
Type
Description
None
-
This function takes no parameters.
Example
Last updated