Skip to main content

Custom Commands

Custom commands allow you to run a console command in response to an ingame chat command. This enables you to run complex commands on servers that don't support plugins such as Vanilla Minecraft. Or you can just create simple commands that would otherwise require an entire plugin such as teleporting to spawn.

You can run up to 5 console commands in sequence and you can also limit the commands so that they require that the player has OP permissions.

Command Variables

  • %PLAYER_USERNAME%
  • %PLAYER_UUID%

Example

Ingame Chat Command

!spawn

Console Command

/tp %PLAYER_USERNAME% 0 0 0

Result

When a player runs this command in game, the control panel will automatically substitute the player username and the player will be teleported to the 0 0 0 coordinates.