Economy

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 is 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.

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

  interval-days: 28 # Tax interval: Players must pay taxes every 28 days.

  delete-chunks: true # Should a random chunk be deleted if the owner fails to pay taxes?

  untrust-members: true # Should a random member be untrusted if the owner fails to pay taxes?

  send-notification: true # Notify players when they fail or not fail to pay taxes?

Last updated