# Commands

You can change the main command aliases in the engine.yml file. By default, you can use /coinsengine or /coe.


# 🚩 Command Flags

Flags allow you to modify how a command behaves when executed:

  • -s - Silent: The target player will not receive any notification about the balance change.
  • -sf - No Feedback: The command sender will not receive a feedback message.

# 🛠️ Plugin Management Commands

<> Required [] Optional

  • /coe [help] - Displays a list of all available plugin commands.
  • /coe reload - Reloads the plugin configuration.
  • /coe create <name> <symbol> <decimals> - Quickly creates a new currency.
  • /coe resetall [currency] - Resets the balance of everyone on the server for a specific currency (or all if left blank).
  • /coe migrate <plugin> <currency> - Migrates data from another plugin into ExcellentEconomy.

# 💰 Currency Commands

Each currency has its own specific commands. You can define these aliases in the Currency File under the Command_Aliases setting.

<> Required [] Optional

  • /coins balance [player] - Check your own or another player's balance.
  • /coins pay <player> <amount> - Send currency to another player.
  • /coins payments [player] [-s] - Toggle whether you want to accept payments from others.
  • /coins give <player> <amount> [-s] [-sf] - Add currency to a player's balance.
  • /coins giveall <amount> [-s] [-sf] - Give currency to every player currently online.
  • /coins take <player> <amount> [-s] [-sf] - Remove currency from a player's balance.
  • /coins set <player> <amount> [-s] [-sf] - Set a player's balance to a specific amount.
  • /coins reset <player> - Resets a player's "coins" balance to zero.
  • /coins exchange <currency> <amount> - Exchange this currency for another.
  • /coins top [page] - View the Leaderboards.

# 🎒 Standalone Commands

These are "global" commands that typically target your Primary Currency (the one linked with Vault).

  • /wallet [player] - View all your currency balances at once. Requires Wallet to be enabled.
  • /balance [player] - Shortcut to view primary currency balance.
  • /baltop [page] - Shortcut to view primary currency leaderboards.
  • /pay <player> <amount> - Shortcut to pay others using the primary currency.
  • /paytoggle [player] - Shortcut to toggle payments for the primary currency.

# 🎨 Customizing Commands

The commands.yml file allows you to enable, disable, or restructure currency commands:

  • Children: If enabled, the command works as a sub-command (e.g., /coins balance).
  • Standalone: If enabled, the command works as a top-level command for the primary currency (e.g., /balance).
/plugins/ExcellentEconomy/commands.yml
Commands:
  set:
    Children:
      Enabled: true
      Alias: set # -> /coins set. One alias only.
    Standalone:
      Enabled: true
      Aliases: ecoset,setmoney # -> /ecoset, /setmoney Multiple aliases are allowed.