Economy

Vault Setup

SCS uses Vault for economy. Install Vault and a Vault-compatible economy plugin, then enable economy in config.yml:

economy: true
max-sell-price: 1000000000
claim-cost: false
chunk-cost: false
claim-cost-multiplier: false
chunk-cost-multiplier: false
use-formatted-number: true

The use-formatted-number option toggles thousand-separator formatting in messages.

Claim Cost & Multiplier

If claim-cost is set to a number, players are charged each time they create a new claim. If claim-cost-multiplier is also set, the cost is multiplied for every additional claim:

If the claim cost is multiplied — for example with claim-cost-multiplier = 2, the first claim costs the base claim-cost (1000 for example), the second costs 2000, the third 4000, and so on.

The same multiplier logic applies to chunk costs through chunk-cost and chunk-cost-multiplier.

Selling & Buying Claims

CommandDescription
/claim sell <claim-name> <price>Put a claim up for sale.
/claim cancel <claim-name> <price>Cancel an active sale.
/claim buyBuy the claim at your current location, if it's listed.

The maximum sale price is capped by max-sell-price in config.yml.

Sale Announcements

announce-sale:
  bossbar: true
  bossbar-settings:
    color: RED
    style: SOLID
  chat: true
  title: true
  actionbar: true

Configure how sales are advertised across the server. Each channel (boss bar, chat, title, action bar) can be enabled independently.