Custom Block Won't Connect

Started by Archmeides on

Topic category: Help with Minecraft modding (Java Edition)

Joined May 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Custom Block Won't Connect

I have a custom block that checks if Block A is at x+1 coordinates and checks if there is nothing at x-1, then it changes to another block if this returns as true. However, it dosen't work. 

Here is the procedure: https://ibb.co/bBPRRJ2
Here are the triggers: https://ibb.co/Wxvtkq2
And here is what it currently looks like in-game: https://ibb.co/M8b81JX

Joined Jun 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Right now you're checking…
Mon, 07/01/2024 - 01:53

Right now you're checking for blocks at x value at 1, not x value at block position + 1. Replace the numbers in the X positions with the "x" parameter and a math plus block and the number, like x+ 1 and x + -1. This may help.