{"id":82945,"date":"2026-06-04T21:07:59","date_gmt":"2026-06-04T18:07:59","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/"},"modified":"2026-06-04T21:07:59","modified_gmt":"2026-06-04T18:07:59","slug":"hyeconomy","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/","title":{"rendered":"Hyeconomy"},"content":{"rendered":"<p>![image](https:\/\/cdn.modrinth.com\/data\/HrYlg7yE\/images\/0971ab6c446a501992abca0b630864cd345f3cb6.png)<br \/>\n## Features<br \/>\n&#8211; Economy system for managing in-game currency (diamonds).<br \/>\n&#8211; Deposit and withdraw diamonds.<br \/>\n&#8211; Send diamonds to other players.<br \/>\n&#8211; Check your current balance.<br \/>\n&#8211; View a leaderboard of top players.<br \/>\n&#8211; Support MiniMessage format<br \/>\n&#8211; PlaceholderAPI supported<\/p>\n<p>## Server Compatibility<br \/>\n&#8211; **Paper \/ Folia** and any forks.<br \/>\n&#8211; \u26a0\ufe0f **Spigot**: untested.<br \/>\n&#8211; \u26a0\ufe0f **\u0e3aBukkit**: untested.<\/p>\n<p>## Database Storage<\/p>\n<p>Hyeconomy utilizes MariaDB for database storage. This ensures reliable and efficient data storage for player balances and transactions.<\/p>\n<p>## Commands<br \/>\n### Player Command<br \/>\n&#8211; `\/balance`: Check your current balance.<br \/>\n&#8211; `\/balance <player>`: Check other current balance.<br \/>\n&#8211; `\/deposit <amount>`: Deposit diamonds into your account.<br \/>\n&#8211; `\/withdraw <amount>`: Withdraw diamonds from your account.<br \/>\n&#8211; `\/send <player> <amount>`: Send diamonds to another player.<br \/>\n&#8211; `\/top`: View the leaderboard of top players.<br \/>\n### Admin Command<br \/>\n&#8211; `\/dgive <player> <amount>`: Give balance to player account.<br \/>\n&#8211; `\/dtake <player> <amount>`: Take balance from player account.<br \/>\n&#8211; `\/dset <player> <amount>`: Set player balance specific value.<br \/>\n&#8211; `\/dreset <player>`: Reset specific player balance to 0.<br \/>\n&#8211; `\/dreload`: Reload config and message.<\/p>\n<p>## Permissions<br \/>\n&#8211; `hyeconomy.balance`: Permission to use the `\/balance` command.<br \/>\n&#8211; `hyeconomy.balance.other`: Permission to use the `\/balance` command check other.<br \/>\n&#8211; `hyeconomy.deposit`: Permission to use the `\/deposit` command.<br \/>\n&#8211; `hyeconomy.withdraw`: Permission to use the `\/withdraw` command.<br \/>\n&#8211; `hyeconomy.send`: Permission to use the `\/send` command.<br \/>\n&#8211; `hyeconomy.top`: Permission to use the `\/top` command.<br \/>\n&#8211; `hyeconomy.give`: Permission to use the `\/dgive` command.<br \/>\n&#8211; `hyeconomy.take`: Permission to use the `\/dtake` command.<br \/>\n&#8211; `hyeconomy.set`: Permission to use the `\/dset` command.<br \/>\n&#8211; `hyeconomy.reset`: Permission to use the `\/dreset` command.<br \/>\n&#8211; `hyeconomy.reload`: Permission to use the `\/dreload` command.<\/p>\n<p>## Configuration<\/p>\n<p>You can customize various aspects of the plugin, including messages and database settings, by editing the `config.yml` and `messages.yml` files in the plugin&#8217;s folder.<\/p>\n<p>## PlaceholderAPI Integration<br \/>\ninstall placeholderapi<br \/>\n  &#8211; display a player&#8217;s balance `%hyeconomy_balance%`.<br \/>\n  &#8211; display a specific player&#8217;s balance by name, use `%hyeconomy_balance_PLAYERNAME%` (replace `PLAYERNAME` with the actual player&#8217;s name).<br \/>\n  &#8211; display the username balance of the top 10 players, use `%hyeconomy_balance_top_username_1%`, `%hyeconomy_balance_top_username_2%`, and so on, up to `%hyeconomy_balance_top_username_10%`.<br \/>\n  &#8211; display the amount balance of the top 10 players, use `%hyeconomy_balance_top_amount_1%`, `%hyeconomy_balance_top_amount_2%`, and so on, up to `%hyeconomy_balance_top_amount_10%`.<\/p>\n<p>Remember to replace `PLAYERNAME` with the actual player name you want to query in the second type of placeholder.<\/p>\n<p>## Support<\/p>\n<p>If you encounter any issues or have questions, please feel free to open an issue on the GitHub repository.<\/p>\n<p>## License<\/p>\n<p>This plugin is open-source and available under the [MIT License](LICENSE).<\/p>\n<p>## Developer API ![Latest Release](https:\/\/repo.hynse.xyz\/api\/latest\/releases\/xyz\/hynse\/api-hyeconomy)<\/p>\n<p>### Information<br \/>\nApache Maven `pom.xml`<br \/>\n&#8220;`xml<br \/>\n<repository><br \/>\n    <id>hyeconomy<\/id><br \/>\n    <url>https:\/\/repo.hynse.xyz\/repository\/maven-releases\/<\/url><br \/>\n<\/repository><br \/>\n<dependency><br \/>\n  <groupId>xyz.hynse<\/groupId><br \/>\n  <artifactId>api-hyeconomy<\/artifactId><br \/>\n  <version>1.2-SNAPSHOT-1<\/version><br \/>\n<\/dependency><br \/>\n&#8220;`<br \/>\nGradle Groovy DSL `build.gradle`<br \/>\n&#8220;`gradlee<br \/>\nrepositories {<br \/>\n    maven { url = &#8220;https:\/\/repo.hynse.xyz\/repository\/maven-releases\/&#8221;}<br \/>\n}<br \/>\ndependencies {<br \/>\n    compileOnly &#8216;xyz.hynse:api-hyeconomy:1.2-SNAPSHOT-1&#8217;<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>### Example<br \/>\n&#8220;`java<br \/>\nimport xyz.hynse.hyeconomy.API.HyeconomyAPI;<\/p>\n<p>\/\/ when you need to get or set player balances:<br \/>\nHyeconomyAPI hyeconomyAPI = Hyeconomy.getAPI();<\/p>\n<p>\/\/ Get a player&#8217;s balance by UUID<br \/>\nUUID playerUUID = \/* UUID of the player *\/;<br \/>\nint balance = hyeconomyAPI.getPlayerBalance(playerUUID);<\/p>\n<p>\/\/ Set a player&#8217;s balance by UUID<br \/>\nint newBalance = \/* The new balance *\/;<br \/>\nhyeconomyAPI.setPlayerBalance(playerUUID, newBalance);<\/p>\n<p>int amount = \/*Amount want to add or subtract*\/;<br \/>\n\/\/ Add a player&#8217;s balance by UUID<br \/>\nHyeconomyAPI.addToPlayerBalance(UUID playerUUID, amount)<\/p>\n<p>\/\/ subtract a player&#8217;s balance by UUID<br \/>\nHyeconomyAPI.subtractFromPlayerBalance(UUID playerUUID, amount)<br \/>\n&#8220;`<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Diamond economy plugin uses MariaDB for database storage.<\/p>\n","protected":false},"featured_media":82946,"template":"","meta":{"_minecraft_slug":"hyeconomy","_minecraft_project_id":"HrYlg7yE","_minecraft_author":"MidnightTale","_minecraft_license":"MIT","_minecraft_downloads":308,"_minecraft_follows":3,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"hyeconomy.zip","_minecraft_size_bytes":5252526,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-16T11:40:59.417348Z","_minecraft_date_created":"2023-10-01T18:11:08.251955Z","_minecraft_date_modified":"2023-10-01T19:56:45.532540Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/hyeconomy","_minecraft_icon_attachment_id":82946,"_minecraft_imported_at":"2026-06-04T18:08:00+00:00","_minecraft_import_hash":"59e0c06055f2f37e4a1a190001ab0879","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,844,125,89,126,127,128,129,91],"mod_loader":[130,131,132,133,134],"minecraft_version":[54,55,56,57,58,59,36,60,93,94,101,102,62,37,40,73,74,38,78,79,80,81,82],"class_list":["post-82945","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-economy","mod_category-folia","mod_category-game-mechanics","mod_category-management","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_category-storage","mod_loader-bukkit","mod_loader-folia","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","minecraft_version-1-19","minecraft_version-1-19-1","minecraft_version-1-19-2","minecraft_version-1-19-3","minecraft_version-1-19-4","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Hyeconomy - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hyeconomy - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Diamond economy plugin uses MariaDB for database storage.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hyeconomy\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hyeconomy\\\/\",\"name\":\"Hyeconomy - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hyeconomy\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hyeconomy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/hyeconomy-icon-ec36e9f46cdec4881503352f4fb32fc4939df828_96.webp\",\"datePublished\":\"2026-06-04T18:07:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hyeconomy\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hyeconomy\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hyeconomy\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/hyeconomy-icon-ec36e9f46cdec4881503352f4fb32fc4939df828_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/hyeconomy-icon-ec36e9f46cdec4881503352f4fb32fc4939df828_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hyeconomy\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Hyeconomy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hyeconomy - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/","og_locale":"en_US","og_type":"article","og_title":"Hyeconomy - Minecraft","og_description":"Diamond economy plugin uses MariaDB for database storage.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/","name":"Hyeconomy - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/hyeconomy-icon-ec36e9f46cdec4881503352f4fb32fc4939df828_96.webp","datePublished":"2026-06-04T18:07:59+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/hyeconomy-icon-ec36e9f46cdec4881503352f4fb32fc4939df828_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/hyeconomy-icon-ec36e9f46cdec4881503352f4fb32fc4939df828_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/hyeconomy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Hyeconomy"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/82945","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/82946"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=82945"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=82945"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=82945"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=82945"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}