Command dispatcher
Guide to use the Command dispatcher
CommandDispatcher
will fill every PlaceholderAPI placeholder if PAPI is installed. It also supports legacy and MiniMessage color formats if the command type is message
. It can also interact with the built-in user metadata. By default, if no prefix is specified at the start of the command, it will be a console command.
Prefixes
Prefixes define how should a command be executed or what it does. For example, it can be a console command, a player performed command, a simple message to a player, or meta data modification, or even just a placeholder parsing operation.
Console
Executes the command in the console. Placeholders are supported.
Player
Executes the command as the player. Placeholders are supported.
Message
Sends a message to the player. Placeholders and every type of color codes are supported.
Actionbar
Sends a message to the players actionbar. Placeholders and every type of color codes are supported.
Sound
Play a sound for the player. Sound - volume -pitch
Close
Closes the currently open inventory. Useful for menus.
Placeholder
parses a placeholder. Can be useful to start placeholder-based cooldown or something.
Give money
Give money to the player. (Economy argument can be omitted)
Take money
Withdraw money from the player. (Economy argument can be omitted)
Open gui menu
Opens a custom AuroraLib powered GUI menu for the player. Arguments after the menu id are optional.
Take items
Take items from the player's inventory. This only supports custom items, defined in Item config. List your items separated by spaces and add /number at the end to specify how many of those item should be taken from the player's inventory.
Give item
Gives an item to the player. This only supports custom items, defined in Item config. Add /number at the end to specify how many of that item should be added to the player's inventory. If the items don't fit in the player's inventory, then the item will be dropped to the ground. If you add true
at the end, it will add excess items to the player's stash instead. This is not recommended though since they can easily overwhelm the stash.
Meta set
Sets or overrides a meta value for the given key for the user.
Meta remove
Removes a meta key from the user.
Meta increment
Increments a meta value by the provided number or 1 if there isn't any provided value. If the meta doesn't exist it will be created.
Meta decrement
Decrements a meta value by the provided number or 1 if there isn't any provided value. If the meta doesn't exist it will be created. It doesn't allow it to go below 0.
API Usage
You can register custom prefix handlers or even override the default ones.
Then you can write something like this in your configs everywhere:
Last updated