Making Meteors 1.20.1 Minecraft (MCreator 2024.4)

Started by jy9146 on

Topic category: Help with Minecraft modding (Java Edition)

Joined Mar 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Making Meteors 1.20.1 Minecraft (MCreator 2024.4)

Me and a couple of my friends are attempting to recreate the mod in the video, 100 Youtubers VS Natural Disasters (with permission from the original dev, Vini2003), using MCreator 2024.4, however we am having a problem with coding and putting in the meteors into the game from the original mod. We're just looking for anything since nothing online has told us anything and nothing we've tried is working. So please help in any way you can!

Joined Oct 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Could you give precise…
Thu, 03/20/2025 - 09:24

Could you give precise information on what you would like to do, like what feature would you like to implement first.

Joined Jun 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Maybe have 
Thu, 03/20/2025 - 19:19

Maybe have 

Joined Jun 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
For some reason I can't…
Thu, 03/20/2025 - 19:53

For some reason I can't delete the above comment... Anyway, try making an invisible block that you place in the sky at the center of your map. Give it block entity and make it so that every couple of ticks on update tick (use get and set block number nbt to make a counter that everytime it reaches a specific number of ticks, it executes a procedure) it spawns a projectile with a meteorite model in a random x and z coordinate (like -50 to 50) away from the block. Then for added effect make the projectile have particles using its while projectile flying trigger, and also use the override vector procedure to make it fall sideways like they do in real life

 

Joined Mar 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Right, so what I’m hoping…
Sat, 03/22/2025 - 07:45

Right, so what I’m hoping for is when a meteor hits the ground it replaces a around a 4x4 area in a circular shape with a few of my modded blocks, obsidian, lava, and fire. 

Joined Mar 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I already made the model and…
Sat, 03/22/2025 - 07:47

I already made the model and animation and I imported it to MCreator

Joined Oct 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
The Circular shape would be…
Sat, 03/22/2025 - 10:26

The Circular shape would be easy to do using the New Procedures+ addon(https://mcreator.net/plugin/107323/new-procedures-plus). Have you made the meteorite already, if you have, the easiest way should be to test if the entity is "on Ground" and if it is then you do your circular replacement stuff.