Jump to content

RocaTeithmore

Members
  • Posts

    4
  • Joined

  • Last visited

RocaTeithmore's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Ah! thank you very much That makes sense! This must be it. Though what do I have to do when I want to allow all stone or wood types for a recipe? I thought it was possible with the overall ID. So just to be sure - since I am an absolute newcommer to Java - when I want only the normal stone I should write within the brackets: "S": { "item": "minecraft:stone", "data": "0" } Or is the syntax different for the DVs? And do I need within brackets as well a comma at the last paragraph or is it enough to set one behind the closing bracket one?
  2. Hi Lumby thx for the answer but unfortunately it makes no difference { "type": "crafting_shaped", "pattern": [ "SSS", "W W", "WCW" ], "key": { "S": { "item": "minecraft:stone" }, "W": { "item": "minecraft:stick" }, "C": { "item": "minecraft:coal_block" } }, "result": { "item": "dstm:pot_block", "count": 1 } } doLimitedCrafting is set to false as well...
  3. I have a weird behavior and I am not sure what I am doing wrong. so maybe one of you can help me. I try to make a custom recipe in minecraft. When I use only one Item like here; { "type": "crafting_shaped", "pattern": [ "###", "###", "###" ], "key": { "#": { "item": "minecraft:stone" } }, "result": { "item": "dstm:pot_block", "count": 1 } } The recipe works just fine. But when I try to make a variation of it it doesn't work anymore. I checked in in a json validator the second code should be correct. but it doesn't work anymore. Sooo it's not okay? { "type": "crafting_shaped", "pattern": [ "###", "/ /", "/C/" ], "key": { "#": { "item": "minecraft:stone" }, "/": { "item": "minecraft:stick" }, "C": { "item": "minecraft:coal_block" } }, "result": { "item": "dstm:pot_block", "count": 1 } } So I am happy for any help thx you
  4. Hello there, I wouldn't start a new thread since this one hits the topic I need help with :) I have a weird behavior and I am not sure what I am doing wrong. so maybe one of you can help me. I try to make a custom recipe in minecraft. When I use only one Item like here; { "type": "crafting_shaped", "pattern": [ "###", "###", "###" ], "key": { "#": { "item": "minecraft:stone" } }, "result": { "item": "dstm:pot_block", "count": 1 } } The recipe works just fine. But when I try to make a variation of it it doesn't work anymore. I checked in in a json validator the second code should be correct. :( but it doesn't work anymore. Sooo it's not okay? { "type": "crafting_shaped", "pattern": [ "###", "/ /", "/C/" ], "key": { "#": { "item": "minecraft:stone" }, "/": { "item": "minecraft:stick" }, "C": { "item": "minecraft:coal_block" } }, "result": { "item": "dstm:pot_block", "count": 1 } } So I am happy for any help :) thx you :D
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.