Customization

commands.yml
# The base command for the bank.
bank:
  command: "bank"
  description: "Open the bank menu."
  permission: "none"
  no-permission-message: "&cYou do not have permission to use this command."
bank-subcommands:
  deposit:
    command: "deposit"
    description: "Deposit money into your bank account."
    usage: "/bank deposit [amount]"
    permission: "royale.banks.command.deposit"
    no-permission-message: "&cYou do not have permission to use this command."
  withdraw:
    command: "withdraw"
    description: "Withdraw money from your bank account."
    usage: "/bank withdraw [amount]"
    permission: "royale.banks.command.withdraw"
    no-permission-message: "&cYou do not have permission to use this command."
  balance:
    command: "balance"
    description: "Check your bank account balance."
    usage: "/bank balance"
    permission: "royale.banks.command.balance"
    no-permission-message: "&cYou do not have permission to use this command."
    balance-other-permission: "royale.banks.command.balance.other"
    balance-other-permission-message: "&cYou do not have permission to see other people's balances."
  top:
    command: "top"
    description: "Check the top bank accounts."
    usage: "/bank top"
    permission: "royale.banks.command.top"
    no-permission-message: "&cYou do not have permission to use this command."
  interest:
    command: "interest"
    description: "Check time until interest."
    usage: "/bank interest"
    permission: "royale.banks.command.interest"
    no-permission-message: "&cYou do not have permission to use this command."
    # The message to display when the command is triggered.
    # The placeholder %cooldown% will be replaced with the time until interest.
    interest-cooldown-message: "&fInterest will be given in &a%cooldown%&a."
    # The format to use when displaying the time until interest.
    # Options: 'short' or 'normal'
    format-to-use: "normal"
    format-use-spaces: true

Setting a command to an empty string ("") will disable it.

The settings inside commands.yml are related to commands that you would typically have any player execute, so they can be edited to your heart's desire.

Not mentioned above, but the bank command setting can also have an aliases setting!

Last updated