Direct Server Commands
Several top-level commands are registered directly with the game server engine. These are called without a subcommand:
| Command | Description |
|---|---|
rbot | Main command handler — routes to subcommand parser |
rbot_add | Add a random bot to the server |
rbot_add_t | Add a Terrorist-side bot |
rbot_add_ct | Add a Counter-Terrorist-side bot |
rbot_entity_check | Print the current entity action table |
| rbot_about | Naming mismatch — actually executes the version output function |
Naming mismatch
rbot_about is registered as a direct server command but currently executes the version output function instead of showing about information. This is a known naming mismatch in v1.1.3.Main rbot Subcommand Parser
The rbot command routes to BotCommandHandler_O, which implements a subcommand parser. This parser accepts both current command names and many legacy/alias forms, for example:
Examples
rbot fill # fill server with bots rbot fillserver # alias for fill rbot wp on # start waypoint editor session rbot wpedit on # alias for wp on rbot version # print version string rbot ver # alias for version
Aliases are acceptedAll legacy and short-form aliases are still parsed for compatibility. Both old and new command names work in v1.1.3.