Help with custom crafting procedure (making a custom crafting table and it's recipes)

Started by EmojiTvYt on

Topic category: Help with modding (Java Edition)

Last seen on 13:32, 5. Nov 2023
Joined Sep 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Help with custom crafting procedure (making a custom crafting table and it's recipes)

So, I've been following this tutorial from 2018: https://mcreator.net/news/42657/mcreator-tutorial-using-procedures-custom-crafting-block
and everything should be working in my procedure but it doesn't (provided screenshots)

Idk what to do, everything should be working but it isn't
please help

 

Last seen on 05:07, 27. Jul 2024
Joined Feb 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Can you tell me where you…
Wed, 09/20/2023 - 11:43

Can you tell me where you use the Procedure in the first screenshot? Also do you use the Procedure in a Trigger of your custom block etc.?

 

Because the error message tells you that you cannot convert from double to int.

 

Last seen on 05:07, 27. Jul 2024
Joined Feb 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
But you fix that by editing…
Wed, 09/20/2023 - 11:54

But you fix that by editing the code ^^

On every place where you see this "new BlockPos(x, y, z)" change it to "new BlockPos((int) x, (int) y, (int) z)" Without the quotation marks. 

 

But I highly recommend to report this issue to the Fabric Generator Plugin. Because this should be not happening.