Configuration
Here you can view all the configuration and options for Player Businesses.
Last updated
Here you can view all the configuration and options for Player Businesses.
Last updated
Here are the latest plugin files, the plugin should automatically generate/update the files. If the plugin hasn't generated them make sure you've got the plugin requirements listed here. If you want to test your YAML syntax you can test it here.
Your plugin will automatically update when there is a needed configuration update, you cannot turn this off and is added to prevent errors on your plugin if you have any missing configuration options.
The plugin connects to my webserver, if this webserver is offline or your plugin cannot access it, then the configuration files may not be updated or downloaded.
Command actions are an easy way you to customize and execute all sorts of functions when an event is triggered, here are the latest command actions for Player Businesses.
Action | Description | Example |
---|---|---|
You can also add action tags that modify how the action is executed, you can use it in your command action like this [ACTION<TAG=value>]
.
Player Businesses supports color codes that you can use literally everywhere possible that is displayed to the player. If you don't know the color codes off by heart, you can view them here.
Player Businesses also supports the 1.16+ hex colors, with the current format {#HEX_CODE}
with the following example {#f5a142}
This shows a nice orange color. You can also use this here, to get your hex colors.
You may want to use some external links to help you when configurating Player Businesses.
Here is a list of all the valid materials that you can use to create items in Player Businesses for each version of Minecraft.
Here is a list of all the valid sound types that you can use to create cool sound effects in Player Businesses for each version of Minecraft.
Here is a list of all the valid item flags that you can use on your items in Player Businesses for each version of Minecraft.
Here is a list of all the valid item enchantments that you can use on your items in Player Businesses for each version of Minecraft.
Tag | Description | Example |
---|---|---|
player
Execute a command as the player.
[player] spawn
message
Send a message to the player.
[message] &aHello!
broadcast
Send a message to all online players.
[broadcast] &aHello World!
perm_broadcast
Broadcast a message to
players with the permission.
[perm_broadcast] message.view &aHello!
title
Send a title to the player.
[title] 20 60 20 &aHello\n&aWorld!
action_bar
Send an action bar message to the player.
[action_bar] &aHello!
loop_player
Loop through all online players and execute an action.
[loop_player] [player] spawn
server
Execute a command as the server.
[server] spawn %player%
commandevent
Execute a unregistered command as the player.
[commandevent] menu
chat_wait
Wait for the user to enter a value in chat.
[chat_wait] &aEnter a number:[message] &aYou said %value%
chat_wait
Wait for the user to enter a value in chat, but removes the color from the chat input with !color.
[chat_wait] &aEnter a number:[message] !color &aYou said %value%
add_money
Give a player money.
[add_money] 500
take_money
Take money from a player.
[take_money] 500
take_perm
Take a permission away from a player.
[take_perm] message.view
give_perm
Give a permission to a player
[give_perm] message.view
sound
Play a sound to the player.
[sound] AMBIENT_CAVE
[sound] AMBIENT_CAVE volume pitch
close
Close the inventory of the player.
[close]
delay
Execute the action later in ticks.
[broadcast<delay=20>] &aHello World
permission
Execute the action only if the player has permission.
[add_money<permission=pa.donator>] 1000
condition
Execute the action only if the value matches.
[add_money<condition=%player_name%=Notch>] 1000 [add_money<condition=%player_name%!=Notch>] 1000
vanished
Execute the action if the player is in vanish or not.
[broadcast<vanished=false>] This player is not in vanish!