Economy Configuration¶
Complete reference for economy settings.
Configuration Location¶
Settings Reference¶
Enable Economy¶
Path: economy.enabled
Type: boolean
Default: false
Description: Enable/disable economy integration
Currency Selection¶
Path: economy.currency
Type: string
Default: "vault"
Description: Economy currency to use
Values: - "vault" - Use Vault economy - "coins" - Use CoinsEngine
Tool Costs¶
Path: economy.costs
Type: map<string, double>
Default: 0.0 for all tools
Description: Cost per tool use
Tool Rewards¶
Path: economy.rewards
Type: map<string, double>
Default: 0.0 for all tools
Description: Reward per operation
economy:
rewards:
pickaxe: 1.0 # Per block
axe: 0.5 # Per log
bucket: 0.1 # Per operation
hoe: 0.3 # Per crop
Economy Messages¶
Path: economy.messages
Type: map<string, string>
Description: Custom economy messages
economy:
messages:
insufficient-funds: "&c💰 You need %amount% %currency% to use this tool!"
cost-deducted: "&e💰 Cost: %amount% %currency%"
reward-earned: "&a💰 Reward: %amount% %currency%"
Complete Example¶
economy:
enabled: true
currency: "vault"
costs:
pickaxe: 10.0
axe: 5.0
bucket: 1.0
hoe: 2.0
rewards:
pickaxe: 1.0
axe: 0.5
bucket: 0.1
hoe: 0.3
messages:
insufficient-funds: "&c💰 You need %amount% %currency% to use this tool!"
cost-deducted: "&e💰 Cost: %amount% %currency%"
reward-earned: "&a💰 Reward: %amount% %currency%"
Next Steps¶
- Economy Feature - Economy system details
- Configuration Overview - Configuration guide