⭐ Mineconomy ⭐ [1.7.10 - 26.2] ✅ PAPI SUPPORT ✅ JSON, SQLITE, MYSQL ⭐ icon

⭐ Mineconomy ⭐ [1.7.10 - 26.2] ✅ PAPI SUPPORT ✅ JSON, SQLITE, MYSQL ⭐ -----

/money, /eco, /pay - Simple economy plugin linked into Vault economy.




I've tested the main features of the plugin from version 1.0.7 and they work well in Paper version 26.2.
I hope to release an update soon with new features and improved compatibility with the new version 26.2.

I haven't made any changes to the code.
Version 1.0.7 of the plugin remains the same. I've only verified that the plugin works in the new version 26.2.
----------, Jun 16, 2026

- Added support for 26.1.2
- The plugin version is now synchronized across pom.xml and plugin.yml
- Added load on startup, so that Mineconomy loads before other plugins that require a Vault economy manager
- Remove unnecessary code in different classes to improve plugin development
- Added new plugin placeholder ` %registeredPlayersCount%` Displays the amount of players registered in the economy
- Added new PlaceholderAPI placeholder ` %mineconomy_registered_players_count%` Displays the amount of players registered in the economy
- Added new config key:
Code (Text):

config:
  # Include players with 0 balance in "/money top" and top placeholders
  # If set to false, only players with a balance greater than 0 will appear
  top-include-zero-balances: false
 



- Any issue, bug, or error you find in this plugin, please report it on [ Github] or via [ Spigot]. If possible, provide some steps to reproduce the issue.
----------, Apr 13, 2026

Fixed
- Fixed MySQL placeholder lookups so temporary database outages no longer throw runtime exceptions into PlaceholderAPI consumers

- Any issue, bug, or error you find in this plugin, please report it on [ Github] or via [ Spigot]. If possible, provide some steps to reproduce the issue.
----------, Apr 8, 2026

- Added HEX color support #RRGGBB (1.16+)
- Added HEX gradient support <#RRGGBB:#RRGGBB>...</#> (1.16+)
- Added HEX triple gradient support <#RRGGBB:#RRGGBB:#RRGGBB>.....</#> (1.16+)

- Any issue, bug, or error you find in this plugin, please report it on [ Github] or via [ Spigot]. If possible, provide some steps to reproduce the issue.
----------, Apr 6, 2026

- Now MySQL uses only ONE connection to resolve placeholders; previously it used TWO connections

- Added new config key for MYSQL database storage:
Code (Text):
config:
  storage:
    table: economy
- Added new placeholders: ` %storageType%`, similar to ` %dataStorage%`
- Added new placeholders: ` %mysqlActiveConnections%`
- Added new placeholders: ` %balance_short%`, ` %amount_short%`, ` %balance_short_<top>%`
- Added new PlaceholderAPI placeholders: ` %mineconomy_storage_type%`, ` %mineconomy_mysql_current_economy%`
- Added new PlaceholderAPI placeholders: ` %mineconomy_player_balance_short%`, ` %mineconomy_top_player_balance_short_{X}%`
- Added new PlaceholderAPI placeholders: ` %mineconomy_mysql_{economy}_player_balance%`, ` %mineconomy_mysql_{economy}_player_balance_short%`, ` %mineconomy_mysql_{economy}_player_top%`
- Added new PlaceholderAPI placeholders: ` %mineconomy_mysql_{economy}_top_player_name_{X}%`, ` %mineconomy_mysql_{economy}_top_player_balance_{X}%`, ` %mineconomy_mysql_{economy}_top_player_balance_short_{X}%`

- Update PolyMart link to Voxel link in console update-checker

Important --> MySQL
- Using Mineconomy PlaceholderAPI placeholders in scoreboards or holograms can greatly increase MySQL reads.
- Recommended refresh rates:
- - Holograms: 120 seconds or more
- - Scoreboards: 2 to 10 seconds
- Lower refresh rates show placeholders changes faster, but may increase MySQL load.


- Any issue, bug, or error you find in this plugin, please report it on [ Github] or via [ Spigot]. If possible, provide some steps to reproduce the issue.
----------, Apr 5, 2026

- Improved read/write transaction speed in all storage systems
- Optimized MySQL, SQLite, JSON, and YAML storage performance
- Reduced storage lookups during tab completion
- Refactored economy storage into a cleaner multi-class architecture for easier future updates


- The new config and messages keys will be added automatically
- Fixed tab completion to match the active economy storage only
- Fixed offline player balance handling
- Renamed `economy` to `balance` in YAML and JSON storages system to match SQLite and MySQL for future compatibility
- - If you use YAML (`Mineconomy\player_economy\YAML`) or JSON (`Mineconomy\player_economy\JSON`) you have 2 options:
- - - Rename (in YAML or JSON folder) in all player files the `economy` value to `balance` and save all files with this change to save economy values
- - - Delete the folder (YAML or JSON) and LOSE the economy balance of all players


- Moved messages key `messages.pay-self` to `messages.pay.self`


- Added new top command `/money top [amount]`, `/eco money top [amount]`
- Added new top message:
Code (Text):
messages:
  top:
    title: '&b<---- &6TOP ECONOMY &b------------------------------------>'
    entry: '&6#%playerTop_<top>% &b%playerName_<top>% &7- &a%balance_<top>%'
    player:
    - ''
    - '&fYou: &6#%playerTop% &d%playerName% &7- &a%balance%'
- Added new config:
Code (Text):

config:
  # Clear loaded player balance cache every X minutes
  # This is not used in MySQL
  # 300 = 5 hours, 0 = disabled
  loaded-player-cache-clear-minutes: 300
- Added new economy storage stats placeholders [ See it here] ` %totalStorageQueryCount%`,` %readStorageQueryCount%`,` %writeStorageQueryCount%`, ` %totalStorageAvgQueryMs%`, ` %readStorageAvgQueryMs%`,` %writeStorageAvgQueryMs%`,` %loadedPlayersCount%`
- Added new top plugin placeholders ` %playerTop%`, ` %playerName%`, ` %balance%`, ` %playerTop_<top>%`, ` %playerName_<top>%`, ` %balance_<top>%`
- Added new PlaceholderAPI internal placeholders ` %mineconomy_player_name%`, ` %mineconomy_player_balance%`, ` %mineconomy_player_top%`, ` %mineconomy_top_player_name_<X>%`, ` %mineconomy_top_player_balance_<X>%`
- Added new default permission `mineconomy.use.top` to use the top command


- Now, `player_name` is stored in the data storage. This allows networks (using the MySQL database) to display the names of top players on any server, even if those players have never logged in.
- - If a network wants each server to have its own economy and top rankings, they should use a data storage system other than MySQL. SQLite is recommended.
- - Also, if SQLITE, JSON, or YAML is used, player names are also saved. This is in case a new server is created and the economy from the old server is transferred to the new one, without losing player names.



- Any issue, bug, or error you find in this plugin, please report it on [ Github] or via [ Spigot]. If possible, provide some steps to reproduce the issue.
----------, Apr 3, 2026

- Added support from 1.8.8 to 26.1
- Added fallback `YAML` for economy data storage

- Added PolyMart link in console update-checker

- Any issue, bug, or error you find in this plugin, please report it on [ Github] or via [ Spigot]. If possible, provide some steps to reproduce the issue.
----------, Mar 31, 2026

Resource Information
Author:
----------
Total Downloads: 115
First Release: Mar 29, 2026
Last Update: Jun 16, 2026
Category: ---------------
All-Time Rating:
0 ratings
Find more info at www.guayando.dev...
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings