Bank & Economy

Every island has a shared bank: a balance the whole team contributes to and spends from. It pays interest over time and ties into the rest of the plugin's economy.

Needs Vault

The economy features require Vault and an economy plugin. If neither is present, IgniteSky disables them gracefully and the rest of the plugin runs unaffected.

Using the bank

CommandWhat it does
/is bankOpen the island bank GUI
/is deposit <amount>Deposit money into the bank
/is withdraw <amount>Withdraw money from the bank
/is banklogsView the bank transaction log

Who may deposit and withdraw is controlled by the DEPOSIT_BANK and WITHDRAW_BANK role permissions, so an owner can let members chip in while keeping withdrawals to themselves. The bank log keeps a running history of who moved what.

Interest

The bank pays periodic interest, which quietly rewards islands for banking rather than hoarding in chests. Skill tree and prestige perks can boost the rate further. Each interest payout is written to the bank log as an interest entry, so /is banklogs shows it right alongside deposits and withdrawals -the whole money trail in one place.

config.yml
economy:
  bank-quick-amounts: [100, 1000, 10000]
  bank-interest:
    enabled: true
    rate: 0.02            # +2% each cycle
    interval-minutes: 30
    max-balance: 0.0      # cap interest growth; 0 = no cap

bank-quick-amounts sets the one click deposit and withdraw buttons in the bank GUI.

Where else money matters

SinkCost
Unlocking a ChunkBlock chunkeconomy.chunk-unlock-cost (default 1000)
Island upgradesPer tier, set in progression/upgrades.yml
Season rewardsPaid out from the server, not the bank (see Seasons)
Tune interest to your economy

A 2% per 30 minute rate compounds fast on a busy server. If your economy is tight, lower the rate or set a max-balance cap so interest cannot run away on the richest islands.