FancyInnovations
FancyCoreCommands

Economy

Economy options for FancyCore

Commands for the economy system

The command list is not complete and not all commands are properly documented yet. Some commands might not be implemented yet.

Currency Management

The /currency command is a command collection for managing currencies.

currency list

Lists all available currencies.

  • Permissions: fancycore.commands.currency.list
  • Syntax: /currency list

currency info

Get information about a specific currency.

  • Permissions: fancycore.commands.currency.info
  • Syntax: /currency info <currency>
    • <currency> - Currency name

currency create

Create a new currency in the system.

  • Permissions: fancycore.commands.currency.create
  • Syntax: /currency create <name> [symbol] [serverbound]
    • <name> - Name of the new currency
    • [symbol] - Symbol of the new currency (optional)
    • [serverbound] - Whether the currency should be bound to this server only (optional, boolean)

currency remove

Remove a specific currency from the system.

  • Permissions: fancycore.commands.currency.remove
  • Syntax: /currency remove <currency>
    • <currency> - Currency name (cannot be the primary currency)

Balance Commands

All balance commands use the primary currency unless otherwise specified.

balance

Displays the balance of the primary currency for the specified player or yourself if no player is specified.

  • Permissions: fancycore.commands.balance
  • Syntax: /balance [player]
    • [player] - Player to check (optional)
  • Alias: /bal

pay

Transfers a specified amount of money from the command sender to the specified player using the primary currency.

  • Permissions: fancycore.commands.pay
  • Syntax: /pay <player> <amount>
    • <player> - Target player
    • <amount> - Amount to transfer

addmoney

Adds a specified amount of money to the balance of the specified player using the primary currency.

  • Permissions: fancycore.commands.addmoney
  • Syntax: /addmoney <player> <amount>
    • <player> - Target player
    • <amount> - Amount to add

removemoney

Removes a specified amount of money from the balance of the specified player using the primary currency.

  • Permissions: fancycore.commands.remove
  • Syntax: /removemoney <player> <amount>
    • <player> - Target player
    • <amount> - Amount to remove

setmoney

Sets the balance of the specified player to a given amount using the primary currency.

  • Permissions: fancycore.commands.setmoney
  • Syntax: /setmoney <player> <amount>
    • <player> - Target player
    • <amount> - New balance amount

balancetop

Displays a leaderboard of the top 10 players with the highest balances for the primary currency. Opens an interactive UI.

  • Permissions: fancycore.commands.balancetop
  • Syntax: /balancetop
  • Alias: /baltop

On this page