Started by
mangamaniacs2064
on
Topic category: Help with Minecraft modding (Java Edition)
hi, i made an advanced crafting table that will let the user build special blocks with the table. when the user put 50 stones in the input slot (slot0) the crating table output (slot1)
will give for example obsidian.. here is what i tried !!! it work only for one block not 5... i tried with 5 block of stone... it doesnt detect 5 stone...
https://hosting.photobucket.com/images/a370/mangamaniacs2064/Sans_titre…
Edited by mangamaniacs2064 on Thu, 03/03/2022 - 02:50
try doing in the procedure
if (number of items in slot 0) = 50 AND (get item in slot 0) = Stone
then do whatever
thank you this worked... but... i cant remove any item from slot 0 or add item to slot1.
i checked the slots are not locked and there is in property inventory size is set at 3.
here is one of many method i tried...
https://hosting.photobucket.com/images/a370/mangamaniacs2064/Sans_titre…
i solved it with your example and i found the right procedure thank you