Configuration Usage - ThePlay3r/Bank GitHub Wiki

Configuration Usage

Here you can find examples of formating stuff in configuration.
Navigation

| Bank Tiers


Bank Tiers

# In the current moment, creating custom bank tiers is not supported, maybe in future this feature will be added.
banks:
  default: # The default bank tier, all new players will have this settings.
    max: 100000 # Amount of maximum deposit in the bank.
     # Players with this tier, can have up to 100,000$ in their bank account.
    cost: 0 # Cost of upgrade to this tier. 
     # (In default tier, this has no purpose, no money will be removed from players)
    perm: "" # Permission, that player needs to have in orded to buy this tier. 
     # (Again, in default section, no matter what permission, new players will always have this tier.)
  tier-2:
    max: 200000
     # Player with this tier, can have up to 200,000$ in their bank account.
    cost: 50000
     # Player needs to 50,000$ in his Vault balance, in order to buy this tier.
    perm: "bank.tier.2"
     # Players without permission "bank.tier.2" can't buy this tier.
    
    # Player needs to have both money to buy the tier and the permission.
    # Settings for other bank tiers are the same.
⚠️ **GitHub.com Fallback** ⚠️