Simple Drops
Customise the drops of any mob type in Hytale!
Easily configure what items mobs drop, how many, and the drop rate all through a simple JSON config file!
Installation
- Add the plugin to your
modsfolder - Run your world
- Look for the
Nemoxxo_SimpleDropsfolder - Open
DropsConfig.json
The default config looks like:
{
"Drops": {}
}
Configuration
Format
| Field | Type | Description |
|---|---|---|
MobName |
string | The entity name (e.g., Skeleton, Armadillo, Bear_Grizzly) |
ItemName |
string | The item ID (e.g., Ingredient_Poop, Ingredient_Charcoal) |
MinDrops |
integer | Minimum amount dropped |
MaxDrops |
integer | Maximum amount dropped |
DropRate |
double | Chance to drop (0.0 = 0%, 1.0 = 100%) |
Example
{
"Drops": {
"Skeleton": {
"Ingredient_Poop": {
"MinDrops": 10,
"MaxDrops": 15,
"DropRate": 1.0
}
},
"Armadillo": {
"Ingredient_Poop": {
"MinDrops": 10,
"MaxDrops": 15,
"DropRate": 1.0
}
}
}
}
Commands
| Command | Description |
|---|---|
/print_drops |
Reloads and displays the current drop configuration |
Notes
- Changes take effect immediately after running
/print_dropsor restarting the server - Mob names are case-sensitive make sure they match exactly!
DropRateis a decimal between0.0and1.0(e.g.,0.5= 50% chance)

