How to make vines that grow from the bottom of blocks apposed to the side.

Started by Mr_lungs on

Topic category: Help with Minecraft modding (Java Edition)

Joined Nov 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How to make vines that grow from the bottom of blocks apposed to the side.

I am relatively new to Mcreator and have only been using it for the last 3 months or so. I am not the best with the coding aspect but am trying to learn. Is there any way to create vines that grow from the bottom of the blocks. I am quite familiar with blockbench so id be perfectly willing to make a custom model. Also to make it clear, i am trying to make the vines with a cross model rather then a flat model.

Joined Feb 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
So how this would work is…
Mon, 11/09/2020 - 17:09

So how this would work is every tick you check if a block is above your custom vine (just do if not air if it can be any block, but if you want a specific do if it is that block).  If there is a block that isn't supposed to support it is above it, make it so it gets destroyed, dropping itself.  Make an nbt tag for your custom vine, where after a certain amount of time it has a chance to place another below it.  Make this part of the procedure loop until it has a block beneath it.  This should be everything.  

Joined Aug 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I may sound really smartn't…
Sun, 08/01/2021 - 23:20

I may sound really smartn't here but how would I implement that into the already existing code? where would I write it in, and what else would I have to change?