
Support and Feedback
MeowEco Documentation Guide
Version: 26.9.1
MeowEco is a modern multi-currency economy plugin for Paper servers. It is not just a balance table; it helps server owners connect coins, points, gems, shops, menus, leaderboards, taxes, and database-backed economy control into one practical system.
🐾 Built for point shops, RPG currency systems, VIP menus, recharge flows, leaderboards, rich-tax balancing, and servers that want smooth Vault / PlaceholderAPI / TrMenu integration.
🌟 Highlights
- 🪙
Multi-Currency and Custom Currencies: run coins, points, gems, tokens, or any custom economy with independent names, symbols, precision, starting balances, and transfer tax. - 🏪
Shop, VIP, and Menu Ready: bridge the default currency through Vault, expose balances through PlaceholderAPI, and use clean commands for TrMenu shops, exchanges, and reward buttons. - 📊
Display-Ready Economy Data:raw,formatted,fixed, andshortoutput styles make balances, leaderboards, and total-economy views easier to show. - ⚖️
Rich Tax and Economy Control: schedule taxation per currency with custom thresholds and rates to slow inflation and support long-running servers. - 🧊
Frozen Funds: freeze, unfreeze, and deduct frozen money for deposits, penalties, locked trades, quest guarantees, and custom server rules. - ⚡
Efficient Runtime: async-heavy database work, cached balance/top lookups, and DB-level hidden-account filtering for high-frequency servers. - 🛡️
Clear Version Baseline: compiled against the Paper26.2API line, guarded by a 26.1.x compatibility compile check, and emitted as Java 25 bytecode for Paper 26.1.x / 26.2 servers.
🚀 Server Owner Setup
- Plugin version:
26.9.1 - Recommended server software:
Paper - Economy bridge: works with
Vaultusing the default currency - Placeholder support: works with
PlaceholderAPIfor menus, scoreboards, chat, and HUD-style displays - Menu integration: works well with
TrMenufor shops, VIP pages, exchange buttons, and reward flows - Current primary build target API:
io.papermc.paper:paper-api:26.2.build.40-alpha - Compatibility compile-check API:
io.papermc.paper:paper-api:26.1.1.build.8-alpha meoweco-paperis compiled with a JDK 25 toolchain- The plugin artifact targets Java 25 bytecode
- If you run
Paper 26.1.x / 26.2, the server itself still needs Java 25 because that requirement comes from upstream Paper
✨ Best-Fit Scenarios
- 🪙
Multi-currency servers: coins, points, gems, tokens, and similar parallel economies without forcing every gameplay loop into one balance. - 🏪
Shop and menu flows: TrMenu-driven purchases, exchanges, permission rewards, and claim buttons with simple commands and placeholders. - 🧱
RPG and survival economy: frozen funds, rankings, rich tax, transfer tax, and exchange rates can combine into a more durable economy loop. - 📊
Display-heavy gameplay: formatted balances, top lists, and server-wide totals are ready for menus, scoreboards, and chat displays. - 🔧
Integrated server setups: easy to drop into servers already using Vault, PlaceholderAPI, and TrMenu without writing extra glue logic.
⚙️ Configuration Overview
Main file: plugins/MeowEco/config.yml
🧩 Core Config Example
messages:
language: "zh_CN"
storage:
type: sqlite
mysql:
host: localhost
port: 3306
database: meoweco
username: root
password: password
use-ssl: false
update-checker:
enabled: true
interval: 24
slug: "meoweco"
default-currency: "coins"
exchange-rates:
enabled: true
coins:
points: 0.1
gems: 0.01
rich-tax:
enabled: false
threshold: 100000.0
rate: 0.05
start-time: "03:00"
interval: "24h"
destination:
type: "system"
player: "Admin"
currencies:
coins:
display-name: "&eCoins"
singular: "Coin"
plural: "Coins"
initial-balance: 100.0
decimal-places: 2
transfer-tax: 0.0
💸 Rich Tax Focus
threshold: only the balance above this point is taxedrate: clamped between0.0and1.0start-time: server local time inHH:mminterval: supports raw minutes and values like30m,6h,1ddestination.type = system: taxed funds are removeddestination.type = player: taxed funds are redirected into a player account
Why rich tax matters:
- 🏦 helps drain excess money when the server economy starts inflating
- ⚖️ works as a soft “redistribution” tool so a few ultra-rich accounts do not dominate the whole economy
- 🧭 turns economy balancing from manual intervention into scheduled rule-based control
- 🛒 when tax goes to a player account, you can measure exactly how much tax was collected and reuse that pool for system buy-shops, public rewards, or other balancing loops
🔄 Exchange Focus
- Supports direct
A -> Brates - Supports inverse lookups
- Supports default-currency-derived exchange paths
- Good for combining
coins,points,gems, or other layered currencies
🪙 Multi-Currency and Custom Currency Focus
- Supports multiple currencies at the same time
- Supports fully custom currency ids such as
coins,points,gems, ortoken - Each currency can define its own display name, singular/plural form, decimal precision, starting balance, and transfer tax
- Lets you separate survival money, shop points, event tokens, gems, and other economy layers
- A better fit for servers that need a structured economy instead of a single universal balance
🎨 Formatted Balance Display
- Per-currency display names
- Singular/plural support
- Decimal precision control
- Placeholder formats:
raw,formatted,fixed,short - Clean output for balances, rankings, and server totals
Formatting examples:
- Assume a player balance of
1000000 raw:1000000formatted:1,000,000fixed:1000000.00short:1M
If the balance grows further, for example 1250000000, short formatting is much easier to present as something like 1.25B.
Why formatting matters:
- 📉 huge economy numbers stay readable instead of cluttering menus, chat, and scoreboards
- 👀 short output is easier for players to scan when balances become very large
- 🧾 the same formatting logic can be reused across menus, rankings, placeholders, and chat messages
- 🎯 makes economy presentation look cleaner and more intentional for both players and server owners
🧭 TrMenu Integration
MeowEco is very menu-friendly and fits well into:
- 🛒 point shops
- 👑 VIP menus
- 🔁 exchange buttons
- 🎁 reward claim flows
- 🔒 frozen-balance gameplay
Two integration styles are recommended.
1. 🪄 Short action style
If your TrMenu environment already provides MeowEco short conditions or actions, you can write:
actions:
left:
condition: 'meco points >= 99'
actions:
- 'meco-take: points 99'
- 'console: lp user %player_name% permission set vip.level1 true'
- 'tell: &aPurchase successful'
To give currency:
actions:
left:
actions:
- 'meco-give: points 99'
- 'tell: &aGranted 99 points'
Meaning:
condition: 'meco points >= 99': checks whether the player has enoughpointsmeco-take: points 99: removes currencymeco-give: points 99: grants currency
2. 🔧 Universal command style
If you want the safest and most portable setup, call the commands directly:
actions:
left:
condition: 'js: Number("%meoweco_balance_points%") >= 99'
actions:
- 'console: meco take %player_name% 99 points'
- 'tell: &aPurchase successful'
deny:
- 'tell: &cNot enough points'
To give currency:
actions:
left:
actions:
- 'console: meco give %player_name% 99 points'
- 'tell: &aGranted 99 points'
Notes:
console:is recommended formeco give/meco take- Conditions can directly use
%meoweco_balance_points% pointsis just an example currency id; replace it withcoins,gems, or your own configured id- Frozen-balance flows can also use
console: eco freeze ...,console: eco unfreeze ..., andconsole: eco deductfrozen ...
⌨️ Command Overview
📌 Registered Root Commands
/meoweco/money/pay/baltop/eco
Aliases:
/meoweco:meco,meow/money:balance,bal/eco:economy
👤 Player Commands
| Command | Description |
|---|---|
/meco |
Shows help |
/meco bal [player] [currency] |
Check balance |
/meco money [player] [currency] |
Same as bal |
/meco pay <player> <amount> [currency] |
Send money |
/meco top [currency] |
Show leaderboard |
/meco baltop [currency] |
Same as top |
/meco exchange <amount> <from> <to> |
Exchange currencies when enabled |
Shortcut or legacy-compatible commands:
/bal,/balance,/money/pay/baltop/moneytop/ecotop
🛠️ Admin Commands
| Command | Description |
|---|---|
/meco give <player> <amount> [currency] |
Add funds |
/meco take <player> <amount> [currency] |
Remove funds |
/meco set <player> <amount> [currency] |
Set total balance |
/meco setrate <from> <to> <rate> |
Update exchange rate and save to config |
/meco hide <player> |
Hide player from leaderboard |
/meco unhide <player> |
Show player on leaderboard again |
/meco refresh |
Clear caches and fix unknown stored names |
/meco reload |
Reload config and messages |
/meco checkupdate |
Run update check immediately |
/meco debug |
Toggle debug mode |
/meco debug currencies |
Print loaded currencies |
Additional admin economy routes implemented in EcoCommand:
| Command | Description |
|---|---|
/eco bal [player] [currency] |
Balance shortcut |
/eco top [currency] |
Leaderboard shortcut |
/eco freeze <player> <amount> [currency] |
Move available funds into frozen balance |
/eco unfreeze <player> <amount> [currency] |
Release frozen funds |
/eco deductfrozen <player> <amount> [currency] |
Deduct from frozen and total balance |
🔐 Permissions
Declared in plugin.yml:
meoweco.adminmeoweco.balancemeoweco.balance.othermeoweco.paymeoweco.takemeoweco.reloadmeoweco.topmeoweco.eco.givemeoweco.eco.takemeoweco.eco.setmeoweco.eco.freezemeoweco.eco.unfreezemeoweco.eco.deductfrozenmeoweco.debug
Notes:
give,take,set,freeze,unfreeze, anddeductfrozencan be granted through dedicated permission nodessetrate,refresh,hide, andunhideshould remain on the strictermeoweco.adminpath
🧩 PlaceholderAPI
Identifier: meoweco
🪙 Currency Metadata
%meoweco_currency_singular%%meoweco_currency_plural%%meoweco_currency_display%%meoweco_currency_id%%meoweco_currency_singular_<currency>%%meoweco_currency_plural_<currency>%%meoweco_currency_display_<currency>%%meoweco_currency_id_<currency>%
💳 Balance Placeholders
Supported modes:
balancefrozenavailable
Supported formats:
- default formatted output
rawformattedfixedshort
Examples:
%meoweco_balance%%meoweco_balance_points%%meoweco_balance_short_gems%%meoweco_frozen%%meoweco_frozen_fixed_coins%%meoweco_available_formatted_points%
🌍 Server Total Placeholders
%meoweco_server_total_<currency>%%meoweco_server_total_raw_<currency>%%meoweco_server_total_formatted_<currency>%%meoweco_server_total_fixed_<currency>%%meoweco_server_total_short_<currency>%
🏆 Top Placeholders
%meoweco_top_<rank>_name_<currency>%%meoweco_top_<rank>_raw_<currency>%%meoweco_top_<rank>_formatted_<currency>%%meoweco_top_<rank>_fixed_<currency>%%meoweco_top_<rank>_short_<currency>%%meoweco_top_<rank>_balance_<currency>%
🧪 Developer API
Service lookup:
MeowEcoAPI api = MeowEcoAPI.get();
Main methods currently exposed:
Collection<Currency> getRegisteredCurrencies();
Currency getCurrency(String id);
double getBalance(UUID uuid, String currencyId);
boolean deposit(UUID uuid, String currencyId, double amount);
boolean withdraw(UUID uuid, String currencyId, double amount);
double getFrozenBalance(UUID uuid, String currencyId);
double getAvailableBalance(UUID uuid, String currencyId);
boolean freeze(UUID uuid, String currencyId, double amount);
boolean unfreeze(UUID uuid, String currencyId, double amount);
boolean deductFrozen(UUID uuid, String currencyId, double amount);
⚡ Performance and Runtime Notes
- Leaderboard cache lifetime: 5 minutes
- Vault default-currency read cache lifetime: 0.5 seconds
- Placeholder balance cache lifetime: 1 second
- Placeholder top and server-total cache lifetime: 30 seconds
- Most database operations are dispatched asynchronously
- Hidden accounts are excluded from leaderboard output at the database layer
- The current build flow targets the modern Paper 26.1.x / Java 25 baseline
Ченджлог
26.9.1Релиз26.1.1, 26.1.2, 26.2 · 29 июня 2026 г.
MeowEco 26.9.1 Changelog
Release date: 2026-06-29
🚀 Highlights
MeowEco 26.9.1 is a performance maintenance release for Paper 26.1.x / 26.2 servers. It focuses on reducing Vault default-currency balance read pressure.
Many shop, menu, permission, quest, and display plugins query balances through Vault very frequently. This release adds a very short read cache for Vault default-currency balance lookups, reducing repeated database reads while keeping all money-changing operations database-authoritative.
✨ Added
- ⚡ Added a short Vault default-currency balance read cache for frequent
getBalance/hascalls from external Vault consumers. - 🧾 Added 26.9.1 release notes explaining the cache strategy, intended use, and safety boundaries.
- 🧹 Player quit now clears that player's Vault cache entries to avoid stale cache growth on long-running servers.
- 🧪 Added a Paper 26.1.2 stable API compatibility compile gate alongside the existing earliest 26.1.x guard and Paper 26.2 main compile target.
🔄 Changed
- ☕ Bumped the plugin version to
26.9.1. - 🔁 Successful Vault, MeowEco API, admin command, pay/exchange, join-time account creation, and rich-tax write paths now invalidate the related Vault balance cache.
- 🧠 Player-level cache invalidation now removes every Vault cache key for that player instead of relying on the current default-currency setting.
- 📦 Release verification now covers the earliest Paper 26.1.x API, Paper 26.1.2 stable API, and the Paper 26.2 main target API.
🛠️ Fixes And Improvements
- 🛡️ The cache is read-only and only applies to Vault default-currency reads; deposits, withdrawals, and account creation still go directly to the database.
- 🔒 Vault withdrawals remain database-authoritative, so insufficient funds are rejected by the atomic database update instead of by cached reads.
- 🧽 Cleaned README trailing whitespace while preserving the emoji-led marketplace introduction layout.
🌟 Why Upgrade
- 🏪 Lower database pressure when shop, menu, VIP, and reward plugins repeatedly check balances.
- 📊 Lighter balance displays, requirement checks, and menu refreshes.
- 🔌 Better Vault behavior for high-interaction servers.
- 🛡️ Performance gains without weakening economy safety.
⚠️ Upgrade Notes
- Your server must run on Java 25.
- This release targets Paper 26.1.x / 26.2.
- Back up your database and configuration files before upgrading, especially on production economy servers.
- No extra configuration migration is required when upgrading from 26.9.0.
26.9.0Релиз26.1.1, 26.1.2, 26.2 · 29 июня 2026 г.
MeowEco 26.9.0 Changelog
Release date: 2026-06-29
🚀 Highlights
MeowEco 26.9.0 targets Paper 26.1.x / 26.2 servers running Java 25. This release moves the primary build target to Paper 26.2 while keeping the Paper 26.1.x compatibility compile gate, so server owners can adopt the newer Paper line with a clearer safety net.
This is also a stability-focused economy release: money precision, database regression coverage, SQLite behavior, public documentation, and release metadata were all tightened for multi-currency servers, shop menus, leaderboards, rich-tax setups, and integrated server workflows.
✨ Added
- 🛡️ Added primary Paper 26.2 API support with
paper-api:26.2.build.40-alpha. - 🧪 Added broader economy regression coverage for transfers, exchange, frozen funds, rich tax, and amount precision policy.
- 🗄️ Added SQLite regression coverage for account creation, transfers, exchange rollback, frozen funds, and leaderboard exclusions.
- 🔍 Added read-only precision reporting for legacy balances, helping server owners find over-precise stored amounts without modifying player money.
🔄 Changed
- ☕ Bumped the plugin version to
26.9.0. - 🧱 Updated the supported runtime range to Paper 26.1.x / 26.2 with Java 25.
- 📦 Kept the Paper 26.1.x compatibility compile check while compiling primarily against Paper 26.2.
- 🔌 Adjusted Maven resolution so Paper 26.2's Adventure 5.x dependencies resolve from Maven Central.
- 📚 Improved README and Wiki copy so server owners can quickly understand where MeowEco fits and why it is useful.
🛠️ Fixes And Improvements
- 💰 Unified amount precision handling across commands, API calls, and Vault boundaries.
- 🧾 Rounded tax, exchange, and scheduled economy results before storage for cleaner database values.
- 🧹 Removed stale non-Paper project messaging and kept the project direction focused on the Paper plugin.
- ⚙️ Cleaned up generated-file and local-runtime ignores to keep the repository easier to maintain.
🌟 Best For
- 🪙 Servers running coins, points, gems, tokens, or other multi-currency economies.
- 🏪 Shop, VIP, reward, and exchange menus built around Vault, PlaceholderAPI, and TrMenu.
- 📊 Servers that care about leaderboards, formatted balances, and total-economy displays.
- 🧊 RPG and survival servers that need frozen funds, rich tax, and economy-control tools.
- 🛡️ Server owners preparing for Paper 26.2 while keeping Paper 26.1.x compatibility checks in place.
⚠️ Upgrade Notes
- Your server must run on Java 25.
- This release targets Paper 26.1.x / 26.2. If your server is still on Paper / Minecraft
1.21.11or older, do not assume this version is compatible. - Back up your database and configuration files before upgrading, especially on production economy servers.
- If you use MySQL, validate connection settings, charset, and permissions on a test server first.
26.8.1Релиз26.1, 26.1.1, 26.1.2 · 30 мая 2026 г.
MeowEco 26.8.1
MeowEco 26.8.1 targets Paper 26.1 / 26.1.1 / 26.1.2 servers running Java 25. This release focuses on smoother use on newer Paper environments and a better out-of-the-box MySQL storage experience.
Added
- MySQL storage now ships with the Paper plugin, so server owners no longer need to install the MySQL driver separately.
- Added MySQL pool settings for tuning connection count, timeouts, and connection lifetime.
Changed
- Clarified support for
Paper 26.1,Paper 26.1.1, andPaper 26.1.2, all running on Java 25. - Updated MySQL defaults to use
utf8mb4and improved compatibility with common MySQL 8 authentication and timeout scenarios. - Updated documentation for the current version, supported Paper range, and Java runtime requirement.
Fixed
- Improved MySQL connection stability for charset, authentication, and slow-network situations.
Runtime Notes
- Your server must run on Java 25.
- This release targets Paper 26.1 / 26.1.1 / 26.1.2. If your server is still on Paper / Minecraft
1.21.11or older, do not assume this version is compatible.
26.7.4Релиз1.21.10, 1.21.11, 26.1.1 · 8 апреля 2026 г.
📝 Changelog Update - v26.7.4
Here are the summary of changes for the upcoming release:
✅ Code Changes
🔍 Player Lookup:
- Removed the name fallback to
Bukkit#getOfflinePlayer(String)inPlayerLookup.resolveOfflinePlayer(...). This prevents non-existent player names from being resolved as forged offline accounts.
- Removed the name fallback to
🛡️ Permission Handling:
- Adjusted
EcoCommandpermission checks:give,take,set,freeze,unfreeze, anddeductfrozennow require their own independent permission nodes.setrate,refresh,hide, andunhidecontinue to requiremeoweco.admin.
- Adjusted
⬆️ Dependency Updates
- 📦 Versioning:
- Updated project version and Paper plugin version to
26.7.4.
- Updated project version and Paper plugin version to
26.7.3Релиз1.21.10, 1.21.11, 26.1.1 · 4 апреля 2026 г.
- Tested exclusively on the Paper server-side.
- Since Paper has not released version 26.1, compatibility is only supported and tested for version 26.1.1.

26.7.2Релиз1.21.9, 1.21.10, 1.21.11 · 21 марта 2026 г.
🛠️ Changelog
✨ Added
- Offline-Player Lookup Support: Added shared support for admin commands and
rich-taxplayer destinations. Offline accounts can now be resolved via UUID, cached profile, database name mapping, or final server lookup. - Permission Declarations: Added explicit declarations to
plugin.ymlfor:meoweco.eco.freezemeoweco.eco.unfreezemeoweco.eco.deductfrozen
🔄 Changed
- Alias Handling Optimization: Optimized
/eco baland/eco topto delegate to the mainmeowecocommand handlers, ensuring consistent behavior and cache management. - Rich-Tax Improvements: Updated configuration to support per-currency rules and provided clearer scheduling log output.
- Documentation: Updated the project documentation and wiki content to align with the current feature set.
🐞 Fixed
- Offline
/eco give: Fixed failures occurring when the target player was not already present in the immediate Bukkit offline-player cache. - Resolution Consistency: Fixed
rich-taxdestination-player resolution to reuse the same lookup path as admin commands. - Code Cleanup: Removed the stale
org.bukkit.Bukkitimport warning inRichTaxService.
26.7.1Релиз1.21.9, 1.21.10, 1.21.11 · 11 марта 2026 г.
MeowEco 26.7.1
Added
- Added a configurable Wealth Tax system, supporting:
- Tax threshold amount
- Tax rate
- Execution start time
- Execution interval
- The wealth tax now supports two destinations:
- Confiscated by the system
- Transferred to a specified player's account
Improved
- Updated
config.ymlcomments to bilingual Chinese–English, making it easier for server owners to configure directly. - Improved API parameter validation, rejecting invalid or illegal amount inputs.
- Optimized Placeholder and leaderboard cache refresh logic, reducing main-thread blocking and improving overall stability.
Build
- Updated build configuration and fixed
shadowJarpackaging compatibility issues under the current Gradle environment.
26.6.9Релиз1.21.9, 1.21.10, 1.21.11 · 4 марта 2026 г.
Changelog
- Fixed an issue where players received an incorrect amount of points.
- Fixed an issue where commands using the
/ecoprefix were not working properly.
Комментарии
Загружаем…