The Economy is an important feature for survival servers, especially when players want to rent their regions to other players, or maybe they need to pay taxes to upkeep their regions.
Here are the economy settings:
economy-config:enabled:true# Enable or disable economy.max-price:1000000000# Maximum integer price when selling something.
If the economy feature is enabled, three sub-features will be enabled by default:
Bank
Each region has a bank, where region owners deposit and withdraw money. It's the safest place for players to keep their money!
This sub-feature cannot be disabled.
Renting Regions
It's an option for players to rent their region to other players for the amount of money for a defined period.
rent-config:enabled:true# Enable or disable renting.# Ignore operators?# If enabled, operators will never need to pay the region to lease.ignore-operators:true
Taxes
Require all region owners to pay taxes every 28 days based on the number of claimed chunks and trusted members.
taxes-config:
enabled: true # Enable or disable taxes.
# Formula: (number of members * amount per member) + (number of claimed chunks * amount per chunk) = total tax amount.
amount-per-member: 1000.0
amount-per-chunk: 250.0
# Tax interval: Players must pay taxes every 28 days.
interval-days: 28
# Actions that the plugin must take when a region owner fails to pay taxes.
# To enable an action, use "true". Else, use "false"
action:
remove-all-chunks: true # Remove all claimed chunks
remove-all-members: true # Remove all trusted players
delete-region: false # Delete the region. NOTE: Deleting the region will remove all chunks and all members, but it will delete the region's bank, all logs, and the entire region's history.
# Notify players when tax time happens?
send-notification: true
# Ignore operators?
# If enabled, operators will never need to pay taxes.
ignore-operators: true