Started by
LaTortiia
on
Topic category: Help with Minecraft modding (Java Edition)
I'm trying to make a nuclear bomb for my mod and I run into a problem:
In trying to make it so that when the bomb gets destroyed by an explosion then cloud particles will kind of "go away" of the position where the block was in 360°, kind of like a shockwave of the bomb.
I'm new to MCreator and this is my first mod and I am really struggling to code that effect. Can someone help me?
Try This
https://mcreator.net/forum/54372/tutorial-summoning-particles-circle-sh…
Try adding a new fluid block that spreads across the world, and with every tick create an explosion from the world procedures tab. If you don't want the fluid to be there, do the replace procedure under the blocks action tab, and then do it again, except with air. It doesn't create a circle shape, but it is the shortest and easiest method of adding a shockwave effect.
Explode at x:x y:y z:z with power 4 source type BLOCK
Place (Fluid block) at x:x y:y z:z
Wait 100 ticks then on server-side do: Replace block at x:x y:y z:z with (barrier) keep state Keep NBT
also do: Wait 10 ticks then on server-side do: Replace block at x:x y:y z:z with (air) keep state Keep NBT