Started by
Hidan
on
Topic category: Feature requests and ideas for MCreator
As long as we can do some stuff with events we are able to notice that we
are not able to reverse some processes because of missing some important
events for Example we are able to make Dirt that will gona change to Grass if it
has Air above but we can't reverse this process because we don't see event such
like isNotAirBlock(i, j, k) or at least add isAnnyBlockAt[i, j, k] == item/block
in order to reverse the process just have the opposite result
@#1
For Dirt
isAirBlock[i, j+1, k] = Remove block
isAirBlock[i, j+1, k] = Add Block
Effect: Dirt changes into Grass
For Grass
isAirBlock[i, j+1, k] = Remove block
isAirBlock[i, j+1, k] = Add Block
Effect: Dirt and Grass will be swapping place in Loop
that is becuase you use is dirt block every time. You should use
isAirBlock[1, j+1, k]
isBlockAt[1, j+1, k] != (then select air block)
@#2 I will try this any way do u have any tricks that will let me generate ore in Nether ?