Overview
The/help command displays all available commands registered in GTProxy or shows detailed information about a specific command.
Syntax
The name of the command to get detailed information about. If omitted, lists all available commands.
Usage Examples
List All Commands
To see all available commands:Show Command Details
To get details about a specific command:Invalid Command
If you query a command that doesn’t exist:Implementation Details
The help command is registered with the nameproxyhelp to avoid conflicts with any in-game help commands. It queries the CommandRegistry to retrieve all registered commands and their descriptions.
Source Reference
Implementation:/home/daytona/workspace/source/src/command/commands/help_command.hpp:12
How It Works
- No arguments: Retrieves all commands from the registry and displays them with their descriptions
- With argument: Looks up the specific command by name and shows its description
- Error handling: Returns an error if the requested command is not found
Color Codes
The help command uses Growtopia’s color coding system:- “ (double backtick): White text for command names and descriptions
- `4 (backtick 4): Red text for error messages
Related Commands
Command Overview
Learn about the command system
Custom Commands
Create custom commands with Lua