πͺMulti-currency System
# ...
currencies:
# Currency to be used by default by all items.
# It will also be the default price for things like discord inventory expansions etc.
default-currency: 'vault'
suppliers:
# Vault has to be installed! This is the default currency.
vault:
format: "<gradient:#f09947:#feed81>[AMOUNT]$</gradient>"
not-enough: "<gradient:#FB6363:#C4B3FD>β You don't have enough money to buy that!</gradient>"
decimal-positions: 3
top-limit: 9999999
low-limit: 0.005
#################################################################
# Example of another kind of currency:
player-points:
deposit-cmd: 'playerpoints:p give [USER-NAME] [AMOUNT]'
withdraw-cmd: 'playerpoints:p take [USER-NAME] [AMOUNT]'
balance-placeholder: '%playerpoints_points%'
not-enough: "<gradient:#FB6363:#C4B3FD>β You don't have enough points to buy that!</gradient>"
format: "<gradient:#ba24ff:#e8d1ff>[AMOUNT]p</gradient>"
decimal-positions: 0
top-limit: 9999
low-limit: 10
Last updated