Discuss Minecraft's scripting and modding capabilities, including APIs, tools, customization, automation, and creator workflows. Share ideas and feedback on how players and creators can extend and customize Minecraft.

29

CustomModelData in Recipes

4 Comments

Post a new comment:

Please sign in to leave a comment.

Sorted by oldest
  • 5
    Registered User commented
    Comment actions Permalink

    Well that is nbt. I think we absolutely need nbt crafting not only CustomModelData

  • 1
    Registered User commented
    Comment actions Permalink

    @Geradeso Lukas  I think mojang will never add nbt crafting to minecraft. If you craft as axample a furnace you can use cobblestone wich was renamed or is enchanted. If you would add nbt crafting this wouldn't work anymore.
    So if we just have custommodeldata renamed items will just work as before

  • 0
    Registered User commented
    Comment actions Permalink

    CustomModelData is an nbt tag

  • 1
    Registered User commented
    Comment actions Permalink

    Can't you do that:

    {
        "type": "minecraft:crafting_shapeless",
        "ingredients": [
            {
                "item": "minecraft:command_block"
            },
            {
                "item": "minecraft:book"
            },
            {
                "item": "minecraft:lime_dye"
            }
        ],
        "result": {
            "item": "minecraft:knowledge_book",
            "CustomModelData": 1,
            "count": 1
        }
    }