Started by
TheGoldenDragon
on
Topic category: Help with MCreator software
Is there a way I can make a procedure only happen when I build something, like how you spawn a ender dragon. Any help would be greatly appreciated.
Topic category: Help with MCreator software
Is there a way I can make a procedure only happen when I build something, like how you spawn a ender dragon. Any help would be greatly appreciated.
Try this
How do I make it for multiple blocks in a special design. Like how the nether reactor core used to work before it was removed
You need motherblock thats on tick update check for blocks around.
Is there a video tutorial available.
lets say you want to detect a clay block with oak leaves around it.
on global event trigger block placed, you can check if the block that was just placed is clay.
you should be able to make something like this:
if [get block X Y Z] = [ clay ].
you can also check around it with things like this
if [get block X Y+1 Z] = [ leaves ].
this will obviously check if the block above the one that just changed is leaves.
I hope this helps ya