Unofficial site, not affiliated with modrinth.com.What is this?
Плагины/EzEconomy

EzEconomy is a modern, fast, and flexible Vault economy provider for Minecraft servers. Supports YML, MySQL, SQLite, MongoDB, and custom storage. Multi-currency, async caching, and robust permissions for any server size. Proven to be to 50x faster then other populair economy plugins.

EzEconomy Icon

Available languages: English, Español, Nederlands, 中国人, Français

ez economy plugin documentation button ez economy plugin support button


★ Our key economy features

EzEconomy is built for performance, flexibility, and ease of use. Highlights include:

  • Vault API compatible: Works with any Vault-based plugin
  • YML, MySQL, SQLite, MongoDB, or custom storage: Flexible, production-ready storage options
  • Thread-safe: Robust error handling and concurrency
  • Multi-currency support: Optional, per-player, fully configurable
  • Async caching: Optimized for large servers
  • Comprehensive commands: /balance, /eco, /baltop, /bank, /pay, /currency
  • Granular permissions: Per-command and per-bank action

⚡ Commands

  • /balance: View your balance
  • /balance : View another player's balance (ezeconomy.balance.others)
  • /eco <give|take|set> : Admin control (ezeconomy.eco)
  • /eco gui: Show balance GUI
  • /baltop [amount]: Show top balances
  • /bank <create|delete|balance|deposit|withdraw|addmember|removemember|info> ...: Bank management (ezeconomy.bank.*)
  • /pay : Pay another player (ezeconomy.pay)
  • /currency [currency]: Set or view your preferred currency (ezeconomy.currency)
  • /ezeconomy cleanup: Remove orphaned player data (ezeconomy.admin)
  • /ezeconomy daily reset: Reset all daily rewards (ezeconomy.admin)
  • /ezeconomy reload: Reload plugin configuration (ezeconomy.admin)
  • /ezeconomy reload messages: Reload only the message file (ezeconomy.admin)
  • /ezeconomy database info: Show database connection info (ezeconomy.admin)
  • /ezeconomy database test: Test the database connection (ezeconomy.admin)
  • /ezeconomy database reset: Reset all database tables (DANGEROUS) (ezeconomy.admin)
  • /tax: Removed — tax functionality moved to EzTax (/plugins/eztax)

🛡️ Permissions

  • ezeconomy.balance.others: View other players' balances

  • ezeconomy.eco: Use /eco admin command

  • ezeconomy.pay: Use /pay command

  • ezeconomy.currency: Use /currency command

  • ezeconomy.admin: Use /ezeconomy admin commands (cleanup, reload, database, daily reset)

  • Bank Permissions:

    • ezeconomy.bank.create: Create a new bank
    • ezeconomy.bank.delete: Delete a bank
    • ezeconomy.bank.balance: View bank balance
    • ezeconomy.bank.deposit: Deposit to a bank
    • ezeconomy.bank.withdraw: Withdraw from a bank
    • ezeconomy.bank.addmember: Add a member to a bank
    • ezeconomy.bank.removemember: Remove a member from a bank
    • ezeconomy.bank.info: View bank info
    • ezeconomy.bank.admin: All bank admin actions

⚙️ Configuration Example

config.yml (Only global settings):

storage: yml
multi-currency:
  enabled: false
  default: "dollar"
  currencies:
    dollar:
      display: "Dollar"
      symbol: "$"
      decimals: 2
    euro:
      display: "Euro"
      symbol: "€"
      decimals: 2
  # Tax configuration has been removed from EzEconomy and moved to EzTax.
  # EzTax on Modrinth: /plugins/eztax
  conversion:
    dollar:
      euro: 0.95
      gem: 0.01
    euro:
      dollar: 1.05
      gem: 0.012
    gem:
      dollar: 100
      euro: 80

config-yml.yml (YML storage settings):

yml:
  file: balances.yml
  per-player-file-naming: uuid
  data-folder: data

config-mysql.yml (MySQL storage settings):

mysql:
  host: localhost
  port: 3306
  database: ezeconomy
  username: root
  password: password
  table: balances

config-sqlite.yml (SQLite storage settings):

sqlite:
  file: ezeconomy.db
  table: balances
  banksTable: banks

config-mongodb.yml (MongoDB storage settings):

mongodb:
  uri: mongodb://localhost:27017
  database: ezeconomy
  collection: balances
  banksCollection: banks

⬇️ Installation

  1. Place EzEconomy.jar in your plugins folder
  2. Configure config.yml and the appropriate config-*.yml file for your storage type
  3. Restart your server

🔗 Integration

  • EzEconomy automatically registers as a Vault provider
  • No extra setup required for Vault-compatible plugins
  • PlaceholderAPI support:
    • Use placeholders in chat, scoreboard, and other plugins:
      • %ezeconomy_balance% – Your balance
      • %ezeconomy_balance_<currency>% – Your balance in a specific currency (e.g., %ezeconomy_balance_euro%)
      • %ezeconomy_bank_<bank>% – Balance of a specific bank
      • %ezeconomy_top_1% – Top 1 player balance (replace 1 with rank)
      • %ezeconomy_currency% – Your preferred currency
    • Works with all PlaceholderAPI-compatible plugins

🛠️ Developer: Custom Storage Providers

EzEconomy supports custom storage backends (YML, MySQL, SQLite, MongoDB, or your own)! You can implement your own provider for any database or storage system.

How to add a custom provider:

  1. Implement the StorageProvider interface in your plugin or module.
  2. Register your provider before EzEconomy loads:
    EzEconomy.registerStorageProvider(new YourProvider(...));
    
  3. Only one provider can be registered. If set, EzEconomy will use it instead of YML/MySQL.
  4. See the full StorageProvider reference for required methods and implementation details.

This allows you to use SQLite, MongoDB, Redis, or any other system for player balances and banks!


Performance benchmark

Economy Benchmark Summary

PluginVersionStorageRedisStatusRun time (s)Deposit avg (ms)Withdraw avg (ms)Balance/Has avg (ms)RAM avg (MiB)RAM peak (MiB)? vs EzEconomy baseline
essentialsx2.21.1fileoffok1.0210.4830720.2763260.005248465.76466.50N/A
ezeconomy3.1.2mysqloffok0.0900.0087940.0076970.004436415.20415.501.00x deposit
ezeconomy3.1.2mysqlonok0.0980.0129910.0087510.004505405.67406.021.48x deposit
ezeconomy3.1.2sqliteoffok0.0340.0080900.0037180.003299420.58420.781.00x deposit
ezeconomy3.1.2sqliteonok0.0360.0071140.0045410.003127447.34447.370.88x deposit
xconomy2.26.3mysqloffok0.5470.1644290.1299930.191681465.28467.5218.70x deposit
xconomy2.26.3sqliteoffok0.2900.1091940.0615940.080283428.20430.3913.50x deposit

Bank Operation Benchmarks

PluginVersionStorageRedisStatusRun time (s)BankDeposit avg (ms)BankWithdraw avg (ms)BankBalance/Has avg (ms)RAM avg (MiB)RAM peak (MiB)
essentialsx2.21.1fileoffskipped (Vault bank API not supported by this economy provider)N/AN/AN/AN/AN/AN/A
ezeconomy3.1.2mysqloffok3.3301.2259671.1537880.567417449.95458.75
ezeconomy3.1.2mysqlonok3.0901.1228241.0780410.516253440.06448.27
ezeconomy3.1.2sqliteoffok2.1260.9602530.8383080.061351463.86469.28
ezeconomy3.1.2sqliteonok1.8640.8273090.7478360.064934490.66496.37
xconomy2.26.3mysqloffskipped (Vault bank API not supported by this economy provider)N/AN/AN/AN/AN/AN/A
xconomy2.26.3sqliteoffskipped (Vault bank API not supported by this economy provider)N/AN/AN/AN/AN/AN/A

❓ Support


🔗 Related Plugins

Try the other Minecraft plugins in the EzPlugins series

Совместимость

Сведения

Лицензия:
Опубликован:5 месяцев назад
Обновлён:2 недели назад
ID проекта:
Главная