PointsExchange
Use PlaceholderAPI to allow players to buy things with their placeholder values.
Quick challenge
How far can you run before the mobs catch you?
Minecraft check
Confirm your run
Complete the quick check to get your code.
PointsExchange

* **BukkitOfUtils** - Centralized utilities and plugin internals. * **PlaceholderAPI** - Plugin and API for using placeholders on your server.

Please join the Streamline Hub Discord in order to get updates and for me to fully assist you with bugs, questions, or suggestions.
Discord: **click here**

Allow players to exchange placeholder values for commands.
Example
- `%jpoints_balance%` -> A PlaceholderAPI placeholder using my other plugin JustPoints that shows the value the player has for a JustPoints `point type` (just a fancy way of saying 'the identifier for a specific stored value') of `balance`. - Say a player has a value of `50.0` set for this placeholder and you have a PointsExchange Exchange that exchanges 25.0 points of this placeholder for the command `!c minecraft:give %player_name% cooked_beef 4` -> this would then give the player `4 steak` when they trigger the Exchange. (The `!c` at the beginning is for a console command.)

- Above and Beyond means that you won't have to worry about lag on your server. - Above and Beyond other PlaceholderAPI economy plugins. This allows you to configure exactly what the player gets.

1. Download and install BukkitOfUtils. Found here: BukkitOfUtils 2. Download the correct version of this plugin for your server version. 3. Place in your `plugins` folder. 4. Stop server. 5. Start server. 6. Use to your liking.

How to trigger an Exchange
1. Install plugin. (Shown above.) 2. Set up an Exchange. 2. `/exchange <exchange-identifier> <player-name>`
Internal Placeholders
`%price%` -> The price of the triggered Exchange. `%player_name%` -> The name of the player the Exchange is being triggered for. `...` -> More will be added at a later date.

Commands
Definitions
* `<required>` - "required" (literal) is required for the command to work. * `(optional)` - "optional" (literal) is optional for the command to work. * `"thing"` - thing is non-literal; meaning you specify something that "thing" describes. Such as a world name, or player name.
Plugin Commands
* `/exchange` * `/exchange <"exchange-identifier"> <"player">` * Triggers a given Exchange for the given player.
Permissions
- None right now. :)