Compatibility
Minecraft: Java Edition
1.21.4
Platforms
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
Licensed GPL-3.0-or-later
Published 4 days ago
Updated 4 days ago
Messy Craft
Messy Craft is a nbt crafting library runs on server-side.
Command
/craft <recipe> [<times>]
Craft recipes./c <recipe> [<times>]
Alias of/craft
.
Recipe
Recipes can be configured by data packs in data/MY_NAMESPACE/messy_recipe/.../MY_RECIPE.json
. (where MY_NAMESPACE
and MY_RECIPE
should be replaced, obviously)
Here is a template 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"
}
}
}