
MeowEco is a High-Efficiency, Lightweight, and Highly Compatible economy plugin designed for modern Minecraft servers.
MeowEco is a High-Efficiency, Lightweight, and Highly Compatible economy plugin designed for modern Minecraft servers.
High Efficiency
High Compatibility
Feature Rich
MeowEco-*.jar into your server's plugins/ folder.Location: plugins/MeowEco/config.yml
# Storage Settings
storage:
# Database type: sqlite (local file) or mysql (remote)
type: sqlite
# MySQL settings (only used if type is mysql)
mysql:
host: localhost
port: 3306
database: minecraft
username: root
password: password
ssl: false
# Currency Settings
currency:
singular: "Coin" # Name for singular amount
plural: "Coins" # Name for plural amount
initial-balance: 0.0 # Starting balance for new players
decimal-places: 2 # Decimal places to display (0-2)
Location: plugins/MeowEco/messages.yml
Supports standard color codes (&) and MiniMessage format.
prefix: Plugin message prefix| Command | Description | Permission |
|---|---|---|
/money |
Check your balance | meoweco.balance |
/money <player> |
Check another player's balance | meoweco.balance.other |
/pay <player> <amount> |
Send money to another player | meoweco.pay |
/baltop |
View the richest players (Top 10) | meoweco.top |
| Command | Description | Permission |
|---|---|---|
/take <player> <amount> |
Force take money from a player | meoweco.take |
/eco give <player> <amount> |
Give money to a player | meoweco.eco.give |
/eco take <player> <amount> |
Take money from a player | meoweco.eco.take |
/eco set <player> <amount> |
Set a player's balance | meoweco.eco.set |
/eco hide <player> |
Hide player from leaderboard | meoweco.admin |
/eco unhide <player> |
Show player in leaderboard | meoweco.admin |
/eco refresh |
Refresh leaderboard cache & fix names | meoweco.admin |
/meoweco reload |
Reload configuration | meoweco.admin |
All permissions are granted to OPs by default.
meoweco.admin: Grants all permissionsmeoweco.balance: Allow checking own balance (Default: true)meoweco.balance.other: Allow checking others' balance (Default: op)meoweco.pay: Allow sending money (Default: true)meoweco.top: Allow viewing baltop (Default: true)meoweco.take: Allow force taking money (Default: op)meoweco.eco.give: Allow giving money (Default: op)meoweco.eco.take: Allow taking money (Default: op)meoweco.eco.set: Allow setting balance (Default: op)Requires PlaceholderAPI.
| Placeholder | Description |
|---|---|
%meoweco_balance% |
Raw balance amount |
%meoweco_balance_formatted% |
Formatted balance (e.g. 1.5K) |
%meoweco_currency_singular% |
Currency singular name |
%meoweco_currency_plural% |
Currency plural name |
%meoweco_top_<rank>_name% |
Name of player at rank N |
%meoweco_top_<rank>_balance%: Balance of the player at the given rank (formatted)%meoweco_top_<rank>_balance_raw%: Balance of the player at the given rank (raw number)%meoweco_top_<rank>_balance_formatted%: Balance of the player at the given rank (with units/abbreviation)%meoweco_server_total%: Total server balance (2 decimal places)%meoweco_server_total_raw%: Total server balance (raw number)%meoweco_server_total_formatted%: Total server balance (with units/abbreviation)Example: %meoweco_top_1_name% displays the name of the richest player.