Crafting Table 1x1

Started by PatrickTheF on

Topic category: Help with modding (Java Edition)

Last seen on 14:20, 5. Nov 2020
Joined May 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Crafting Table 1x1

how do I make working crafting table with one slot and one output on custom block? I have a block, and gui, but when I put the item in input frame nothing happens, any ideas?

 

event

Last seen on 22:41, 29. Dec 2021
Joined Mar 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I have no idea what all the…
Mon, 05/18/2020 - 12:07

I have no idea what all the extra stuff in the procedure is, but just use “get item from slot 0 = something” and remove item from slot 0 and then set item in slot 1. Other than that I don’t know what you are trying to do with “get copy of..”. Or maybe that is the correct way to do it, now that procedures are more complex in 2020.3

 

Last seen on 00:30, 24. Aug 2023
Joined May 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Why do you check that slot 1…
Mon, 05/18/2020 - 13:24

Why do you check that slot 1 has less than 64 items twice? 

Why are you using the "get copy of" block? "Get item in slot" works just fine and is more reliable because this is how it's supposed to be used.

Third, you should make sure this procedure is actually firing when you want it to. A good way to test this is to make a "send message" block that prints something to chat so you know it's woking.

Last seen on 14:20, 5. Nov 2020
Joined May 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
should I add this recipe to…
Mon, 05/18/2020 - 14:16

should I add this recipe to update tick of a block or where?

Last seen on 22:41, 29. Dec 2021
Joined Mar 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Update Tick but if it doesn…
Mon, 05/18/2020 - 14:21

Update Tick but if it doesn't allow you to set it to when block right clicked. However that requires you exit out of the crafting table then re-enter it.

Last seen on 00:30, 24. Aug 2023
Joined May 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You should put a button in…
Mon, 05/18/2020 - 14:23

You should put a button in your GUI that executes this procedure.

Last seen on 14:20, 5. Nov 2020
Joined May 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
any timer maybe? after some…
Mon, 05/18/2020 - 14:26

any timer maybe? after some time crafts itself? it's cheese after all

Last seen on 22:41, 29. Dec 2021
Joined Mar 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
"You should put a button in…
Mon, 05/18/2020 - 14:27

"You should put a button in your GUI that executes this procedure."  Oh yeah that too :)

Last seen on 14:20, 5. Nov 2020
Joined May 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
ok, it's working fine, now I…
Mon, 05/18/2020 - 14:37

ok, it's working fine, now I just need it to give me back empty bucket, thank you guys for help!

Last seen on 00:30, 24. Aug 2023
Joined May 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
No problem, glad you've got…
Mon, 05/18/2020 - 14:55

No problem, glad you've got it working! I didn't know that you wanted this to be time-based; I would have been a little more specific :P