note:
name: "&aBank Note" # Display name of the bank note item
lore: # Lore shown on the item (supports placeholders)
- "&7Value: &e{currency_symbol}{amount}"
- "&7Right-click to redeem"
- "&7Note ID: #${serial}"
- "&7Withdrawn by: &f{player}"
glow: true # Whether the note item has a glow effect
material: PAPER # Item type used for the note
allow-give: false # If false, only commands/plugins can give notes
# Restricts each player to their own notes (no trading)
restrict-player: false # If true, players can't redeem notes from others
# Symbol used for money display
currency-symbol: "$"
# Economy limits for withdrawals
withdraw:
min: 10 # Minimum amount allowed per note
max: 1000000 # Maximum amount allowed per note
fee-percent: 5.0 # Fee taken as a percentage (5% of withdrawn amount)
# Visual and sound effects on redeem
effects:
redeem-sound: ENTITY_EXPERIENCE_ORB_PICKUP # Sound played when redeeming a note
use-particle: true # Show particles on redeem
particle-type: VILLAGER_HAPPY # Type of particle to use
# Expiration for notes
expiry:
enabled: true # If true, bank notes expire after a duration
default-minutes: 1440 # Default expiry time in minutes (1440 = 1 day)
show-expiry: true # Display expiry info in note lore
Code (Text):
# ---------------------
# WithdrawX Language File
# ---------------------
prefix: "&7[&bWithdrawX&7] &r" # Prefix shown before all plugin messages
currency-symbol: "$" # Currency symbol shown in messages
messages:
reloaded: "%prefix%&aConfiguration reloaded."
no-permission: "%prefix%&cYou don’t have permission to do that."
invalid-amount: "%prefix%&cPlease enter a valid numeric amount."
below-min: "%prefix%&cMinimum withdraw amount is ${currency}${min}."
above-max: "%prefix%&cMaximum withdraw amount is ${currency}${max}."
insufficient-funds: "%prefix%&cYou do not have enough money."
withdrawn: "%prefix%&aWithdrew ${currency}${amount} (Fee: ${currency}${fee})"
redeemed: "%prefix%&aRedeemed ${currency}${amount} from bank note."
not-a-note: "%prefix%&cThis is not a valid WithdrawX note."
wrong-owner: "%prefix%&cYou cannot redeem someone else's note."
expired: "%prefix%&cThis bank note has expired."
usage-withdraw: "%prefix%&7Usage: /withdraw <amount>"
usage-deposit: "%prefix%&7Hold a note and type /deposit to redeem it."
player-not-found: "%prefix%&cPlayer not found or offline."
admin-gave-note: "%prefix%&aGave ${player} a note worth ${currency}${amount}."
received-note: "%prefix%&aYou received a bank note worth ${currency}${amount}."
help:
- "%prefix%&6WithdrawX Help Commands:"
- "&e/withdraw <amount> &7- Withdraw currency into a note"
- "&e/deposit &7- Redeem a held bank note"
- "&e/withdrawx reload &7- Reload plugin configuration"
- "&e/givebanknote <player> <amount> &7- Admin: give player a note"
Code (Text):
/givebanknote <player> <amount> - Admin: give a note
/withdrawx reload - Reload plugin files
/withdrawxhelp - Show command list
All protected by withdrawx.admin and withdrawx.help permissions
For support, bug reports, or feature suggestions, use the Spigot Discussion tab