Started by
The_CAT_9801
on
Topic category: Help with Minecraft modding (Java Edition)
Hi, my mod has a Summoning Table block in it which you can use artifacts to summon different creatures and items. I am trying to make it so a particles will spawn when the button is clicked, but I am not very familiar with the particle block in procedures. If anyone can help, it would be appreciated.
Thanks!
You just need to use the "spawn particles block" and then choose coordinates, size of the area where they'll spawn for x, y and z, their speed and type, you can make it so they spawn when a player uses an artifact like you would place a block or spawn an entity
I understand that, but as a further question, how would I make a pillar of particles in the middle (one block above) the block?
do a procedure that detects when the block is clicked and then spawn particles at x, y+1, z
This works after some tweaking like adding 0.5 to the X and Z values to make it in the center. Also adding offset with a while loop and using the single particle block to have more control over the movement. Thanks for the help!
You're welcome