Started by
PHPmyNO
on
Topic category: Help with Minecraft modding (Java Edition)
I am trying to make a procedure that checks for a block within a specific radius and then continues if the block is found.
Is there any way to do that?
Edited by PHPmyNO on Sun, 08/11/2024 - 04:36
there is a procedure template called check for block in 6x6x6 box
Okay, but how do I edit the radius then?
I tried editing the SX, SY, and the SZ, but it didn't work after that.
replace sx, sy, and sz with the same negative number and then replace the 6 in the repeat blocks with double the absolute value of the previous number
example: sx = -10; sy = -10; sz = -10; repeat 20 times