Description
๐ช Hytale Coins: The Ultimate Economy Solution
Bring a robust, physical, and digital economy to your Hytale server! Hytale Coins seamlessly integrates physical currency items with a modern digital wallet system, allowing players to trade, pay, and manage their wealth with ease.
๐ Key Features
- ๐ Physical & Digital Currency: Use physical coins in-game or deposit them into your digital wallet.
- ๐ง Smart Wallet UI: A sleek, custom NoesisGUI interface to check your balance and withdraw coins.
- ๐ธ Player-to-Player Payments: Send money to your friends instantly with the
/paycommand. - โ๏ธ Mob & Crop Drops: Earn currency naturally by hunting mobs or harvesting crops.
- ๐ ๏ธ Highly Configurable: Customize everything from currency names to drop rates and coin values.
- ๐ Vault2 Integration: Fully compatible with other mods using the Vault2 API.
- ๐๏ธ Flexible Storage: Choose between local JSON files or a high-performance MySQL database.
โ๏ธ Configuration Guide
Tailor the mod to your server's needs with our comprehensive config.json. Below is the default setup with a detailed breakdown of every setting.
๐ Default Configuration
{
"enableMobDeathDrops": true,
"mobDeathDropRate": 0.1,
"enableCropHarvestDrops": true,
"cropHarvestDropRate": 0.2,
"coinValues": {
"Coin_Gold": 1000,
"Coin_Emerald": 10000,
"Coin_Silver": 100,
"Coin_Iron": 10,
"Coin_Diamond": 100000,
"Coin_Copper": 1
},
"mobDeathDrops": {
"Cow": 3,
"Fox": 3
},
"payCommandPermission": "",
"currencyNameSingular": "Coin",
"currencyNamePlural": "Coins",
"storageType": "JSON",
"mysqlHost": "localhost",
"mysqlPort": 3306,
"mysqlDatabase": "hytale",
"mysqlUser": "root",
"mysqlPassword": ""
}
๐ Settings Breakdown
๐ฎ Drops & Economy
enableMobDeathDrops(true/false): Toggle whether mobs drop coins upon death.mobDeathDropRate(0.0to1.0): The probability (percentage) that a mob will drop coins. Default0.1is a 10% chance.enableCropHarvestDrops(true/false): Toggle whether harvesting crops rewards players with coins.cropHarvestDropRate(0.0to1.0): The probability that harvesting a crop will drop coins.coinValues: Define the value of each physical coin type in the base currency.mobDeathDrops: Specify the exact amount of base currency dropped by specific mob types.
๐ฌ Customization & Permissions
currencyNameSingular: The name of your currency in singular form (e.g., "Gold Piece").currencyNamePlural: The name of your currency in plural form (e.g., "Gold Pieces").payCommandPermission: Set a custom permission node required to use/pay. Leave empty ("") to allow all players in Adventure mode.
๐พ Storage Strategy
storageType: Choose your backend. Options:"JSON"(files) or"MYSQL"(database).- MySQL Settings: Only required if
storageTypeis set to"MYSQL".mysqlHost: Database server address.mysqlPort: Database port (default3306).mysqlDatabase: The schema name.mysqlUser&mysqlPassword: Connection credentials.
๐ Commands
| Command | Description | Permission |
|---|---|---|
/wallet |
Opens your digital wallet UI. | None |
/pay <player> <amount> |
Transfer currency to another player. | Configurable |
/economy <add/set> <player> <amount> |
Admin tools to manage balances. | coins.admin.economy |
๐ ๏ธ Installation
- Download the latest release.
- Drop the mod into your Hytale
modsfolder. - Restart your server to generate the default configuration.
- (Optional) Edit
config.jsoninuniverse/mods/coins/to customize your experience.
Developed with โค๏ธ for the Hytale Community.


