Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Hyeconomy
PluginMIT

Hyeconomy

Diamond economy plugin uses MariaDB for database storage.

287
Downloads
3
Followers
2 years ago
Updated
📦
1
Versions
economymanagementstoragebukkitfoliapaperpurpurspigot
Download Latestv1.2-SNAPSHOT-3View on Modrinth

📖About Hyeconomy

image

Features

  • Economy system for managing in-game currency (diamonds).
  • Deposit and withdraw diamonds.
  • Send diamonds to other players.
  • Check your current balance.
  • View a leaderboard of top players.
  • Support MiniMessage format
  • PlaceholderAPI supported

Server Compatibility

  • Paper / Folia and any forks.
  • ⚠️ Spigot: untested.
  • ⚠️ ฺBukkit: untested.

Database Storage

Hyeconomy utilizes MariaDB for database storage. This ensures reliable and efficient data storage for player balances and transactions.

Commands

Player Command

  • /balance: Check your current balance.
  • /balance <player>: Check other current balance.
  • /deposit <amount>: Deposit diamonds into your account.
  • /withdraw <amount>: Withdraw diamonds from your account.
  • /send <player> <amount>: Send diamonds to another player.
  • /top: View the leaderboard of top players.

Admin Command

  • /dgive <player> <amount>: Give balance to player account.
  • /dtake <player> <amount>: Take balance from player account.
  • /dset <player> <amount>: Set player balance specific value.
  • /dreset <player>: Reset specific player balance to 0.
  • /dreload: Reload config and message.

Permissions

  • hyeconomy.balance: Permission to use the /balance command.
  • hyeconomy.balance.other: Permission to use the /balance command check other.
  • hyeconomy.deposit: Permission to use the /deposit command.
  • hyeconomy.withdraw: Permission to use the /withdraw command.
  • hyeconomy.send: Permission to use the /send command.
  • hyeconomy.top: Permission to use the /top command.
  • hyeconomy.give: Permission to use the /dgive command.
  • hyeconomy.take: Permission to use the /dtake command.
  • hyeconomy.set: Permission to use the /dset command.
  • hyeconomy.reset: Permission to use the /dreset command.
  • hyeconomy.reload: Permission to use the /dreload command.

Configuration

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's folder.

PlaceholderAPI Integration

install placeholderapi

  • display a player's balance %hyeconomy_balance%.
  • display a specific player's balance by name, use %hyeconomy_balance_PLAYERNAME% (replace PLAYERNAME with the actual player's name).
  • 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%.
  • 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%.

Remember to replace PLAYERNAME with the actual player name you want to query in the second type of placeholder.

Support

If you encounter any issues or have questions, please feel free to open an issue on the GitHub repository.

License

This plugin is open-source and available under the MIT License.

Developer API Latest Release

Information

Apache Maven pom.xml

<repository>
    <id>hyeconomy</id>
    <url>https://repo.hynse.xyz/repository/maven-releases/</url>
</repository>
<dependency>
  <groupId>xyz.hynse</groupId>
  <artifactId>api-hyeconomy</artifactId>
  <version>1.2-SNAPSHOT-1</version>
</dependency>

Gradle Groovy DSL build.gradle

repositories {
    maven { url = "https://repo.hynse.xyz/repository/maven-releases/"}
}
dependencies { 
    compileOnly 'xyz.hynse:api-hyeconomy:1.2-SNAPSHOT-1'
}

Example

import xyz.hynse.hyeconomy.API.HyeconomyAPI;

// when you need to get or set player balances:
HyeconomyAPI hyeconomyAPI = Hyeconomy.getAPI();

// Get a player's balance by UUID
UUID playerUUID = /* UUID of the player */;
int balance = hyeconomyAPI.getPlayerBalance(playerUUID);

// Set a player's balance by UUID
int newBalance = /* The new balance */;
hyeconomyAPI.setPlayerBalance(playerUUID, newBalance);

int amount = /*Amount want to add or subtract*/;
// Add a player's balance by UUID
HyeconomyAPI.addToPlayerBalance(UUID playerUUID, amount)
        
// subtract a player's balance by UUID
HyeconomyAPI.subtractFromPlayerBalance(UUID playerUUID, amount)

👥 Team & Contributors

MidnightTale
MidnightTaleOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
bukkitfoliapaperpurpurspigot
Minecraft Versions
1.191.19.11.19.21.19.31.19.41.201.20.11.20.2+15 more

🔗 Links

Modrinth Page