2 New Events that are important

Started by Hidan on

Topic category: Feature requests and ideas for MCreator

Last seen on 03:03, 6. Feb 2024
Joined Apr 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
2 New Events that are important

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

 

Last seen on 00:44, 29. Nov 2022
Joined Dec 2015
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
in order to reverse the
Mon, 07/04/2016 - 00:10

in order to reverse the process just have the opposite result

Last seen on 03:03, 6. Feb 2024
Joined Apr 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:in order to reverse the
Mon, 07/04/2016 - 00:24

@#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

 

Last seen on 00:44, 29. Nov 2022
Joined Dec 2015
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
that is becuase you use is
Mon, 07/04/2016 - 00:37

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)

Last seen on 03:03, 6. Feb 2024
Joined Apr 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
RE:that is becuase you use is
Mon, 07/04/2016 - 23:51

@#2 I will try this any way do u have any tricks that will let me generate ore in Nether ?