Nbt crafting library.
Introducing Messy Craft
Messy Craft is an innovative NBT crafting library that operates on the server-side, enhancing your Minecraft PE experience.
Commands Overview
- /craft [] – Use this command to create crafting recipes.
- /c [] – This serves as an abbreviation for the
/craftcommand.
Custom Recipes
The crafting recipes can be tailored through data packs located at data/MY_NAMESPACE/messy_recipe/.../MY_RECIPE.json. Simply replace MY_NAMESPACE and MY_RECIPE with your preferred identifiers. Below is a template for creating your own recipe file.
{
"ingredients": [
{
"count": 1,
"id": "minecraft:stick",
"components": {
"minecraft:rarity": "uncommon"
}
}
],
"result": {
"count": 1,
"id": "minecraft:milk_bucket",
"components": {
"minecraft:item_name": "Milky Water"
}
}
}