X-Prison 2025.4.0 – Release Notes
11th August 2025
Fixes
- Bombs Respect Mine Boundaries – Fixed an issue where bombs could break blocks outside of designated mine areas. Your mines are now safe from accidental (or intentional) overreach.
✨ New Features
- Create your own Custom Enchants! – You can now create your own custom enchantments that execute commands when triggered.
- Add as many as you want—no hard limits.
- Fully configurable triggers and commands for maximum creativity.
Code (Text):
{
"class": "dev.drawethree.xprison.enchants.model.CommandRewardEnchantBase",
"id": 999,
"rawName": "command-executor-template",
"name": "<yellow>Your Custom Enchant</yellow>",
"enabled": true,
"increaseCostBy": 400,
"maxLevel": 1000,
"chance": 0.000025,
"initialCost": 1000,
"pickaxeLevelRequired": 1,
"currency": "GEMS",
"refund": {
"enabled": true,
"guiSlot": 34,
"percentage": 50.0
},
"gui": {
"name": "<yellow>Your Custom Enchant</yellow>",
"material": "COMMAND_BLOCK",
"customModelData": 0,
"slot": 34,
"description": [
"<gray>This is your custom enchant!</gray>",
" ",
"<gray>This enchant executes commands based on a given chance.</gray>",
" ",
"<gray>You can create as many as you want of these</gray>",
"<gray>by copying the command-executor-template.json</gray>",
"<gray>renaming it, and modify it to your liking!</gray>"
]
},
"commands": [
{
"command": "money give %player% 1000",
"chance": 33
},
{
"command": "tokens give %player% 1000",
"chance": 33
},
{
"command": "gems give %player% 1000",
"chance": 33
}
]
}