Help adding Stalactites and Stalagmites

Started by avila27 on

Topic category: Help with Minecraft modding (Java Edition)

Active 3 years ago
Joined Jul 2020
Points:
699

User statistics:

  • Modifications: 2
  • Forum topics: 8
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 43
Help adding Stalactites and Stalagmites

I tried different stuff and all of my attempts were miserable, so if u have a confirmed way of spawning stalagmites/stalactites please help me i will be so grateful!

Active 3 years ago
Joined Jun 2020
Points:
645

User statistics:

  • Modifications: 0
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 28
Set blocks this block can…
Mon, 11/23/2020 - 20:14

Set blocks this block can replace to cave air, set tick randomly to true, and make a procedure for "on block tick update" to do this:

(for stalactite)

  • If not block at [x] [y + 1] [z] = stone:
    • Set block at [x] [y] [z] to [cave air]

(for stalagmite)

  • If not block at [x] [y - 1] [z] = stone:
    • Set block at [x] [y] [z] to [cave air]

 

Make sure to set the generation very high, otherwise you will get barely any!

Active 3 years ago
Joined Jun 2020
Points:
645

User statistics:

  • Modifications: 0
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 28
Note: I found this while…
Mon, 11/23/2020 - 20:16

Note: I found this while making crystals.

Active 3 years ago
Joined Jul 2020
Points:
699

User statistics:

  • Modifications: 2
  • Forum topics: 8
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 43
i tried that, but it seens…
Thu, 11/26/2020 - 17:34

i tried that, but it seens that in Custom Dimension caves doent have Cave Air

Active 3 years ago
Joined Jun 2020
Points:
645

User statistics:

  • Modifications: 0
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 28
then set it to replace…
Thu, 11/26/2020 - 21:15

then set it to replace normal air