Skip to Content
For more plugins like this, check out: https://dannb.online/ 🎉
Reloading and Admin Commands

Reloading and Admin Commands

Velocity Commands includes a built-in admin command:

/velocitycommands

This root command requires:

velocitycommands.admin

Available subcommands

/velocitycommands info

Shows plugin version information and links.

/velocitycommands commands

Shows all currently loaded commands.

The command list uses each command’s internal name and shows the configured command: string on hover.

This is useful when checking whether a command actually loaded after a reload.

/velocitycommands reload

Reloads commands.yml and re-registers the command list.

This is the main workflow for editing commands without restarting the proxy.

How reload works

When you run reload, the plugin:

  1. reloads commands.yml
  2. unregisters all currently loaded custom commands
  3. clears the in-memory command list
  4. loads the commands from the updated file
  5. registers them again

If successful, it reports how many commands were reloaded.

A safe workflow is:

  1. edit commands.yml
  2. save the file
  3. run /velocitycommands reload
  4. check console for any validation errors
  5. run /velocitycommands commands
  6. test the changed command in game

Permission model

Only users with:

velocitycommands.admin

can use the root admin command or its subcommands.

Good operational habit

After every larger config change, compare:

  • how many commands you expected to load
  • how many commands the plugin says it loaded

If the number is lower than expected, one or more commands likely failed validation.

Last updated on