Voucher Configuration Wiki
This page explains how to create and configure voucher items using the voucher file. Vouchers allow you to execute commands when an item is used, with optional conditions, permissions, and PlaceholderAPI support.
File Purpose
The voucher file is used to define custom items that:
Execute console or player commands
Support conditional usage
Use PlaceholderAPI for dynamic checks
Can act as boosters, rewards, or consumables
Condition System
Conditions control whether a voucher can be used.
Supported Operators
&&
AND (both conditions must be true)
`
==
Equals
!=
Not equals
<
Less than
>
Greater than
<=
Less than or equals
>=
Greater than or equals
!
NOT
( )
Force execution order
Execution Order
Each condition is checked
If any condition fails, its failure commands are executed
Voucher usage is cancelled
If all conditions pass, main commands execute
PlaceholderAPI Support
Conditions can use PlaceholderAPI placeholders.
Important Notes
Placeholders must return a valid value
If a placeholder fails to parse → the condition returns false
String comparisons are case-sensitive
Example Condition
✔ Allows usage if:
Player has low health and enough food OR
Player is not flying
Example: Instant Heal Voucher (With Conditions)
Example: Personal Money Booster Voucher
This voucher activates a personal money booster for the player.
Item Section Explained
Display Name
Item name (supports color codes)
Material
Bukkit material name
Lore
Item description
Enchantments
Adds enchant glow
Flags
Hides enchantments or attributes
Last updated