Why this Minetweaker recipes doesn't work?

  • Please make sure you are posting in the correct place. Server ads go here and modpack bugs go here
  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

IL_Giudice

New Member
Jul 29, 2019
7
0
0
As title:

recipes.addShapeless(<12> * 2, [160:1])

12 is sand, 160:1 is quicksand. Basically i want to create 2 sand blocks from 1 quicksand blocks.
Any suggestion?
 
Since you're using item ID numbers, I'm assuming you're on 1.6. If you're on 1.7.10, it won't work, because you now need to use the item ID name. You need to enclose all item ID numbers with < > as well, and you need a ; at the end to close it off. The below is how it should be :)

recipes.addShapeless(<12> * 2, [<160:1>]);
 
Since you're using item ID numbers, I'm assuming you're on 1.6. If you're on 1.7.10, it won't work, because you now need to use the item ID name. You need to enclose all item ID numbers with < > as well, and you need a ; at the end to close it off. The below is how it should be :)

recipes.addShapeless(<12> * 2, [<160:1>]);

Oh, thank you very much, i was such a stupid last night that i forgot the brackets!