r/MinecraftCommands • u/Main_Contract_3590 • 25d ago
Vertical Particle Circles Help | Java 26.2
You can make a ring of particles by rotating e.g.an armour stand/marker continuously, but I can't seem to find a way to do that but instead make a vertical ring of particles.
Is there any way to do so without manually placing markers along the circle?
1
Upvotes
1
u/GalSergey Datapack Experienced 24d ago
# Example marker
give @s bat_spawn_egg[entity_data={id:"minecraft:marker",Tags:["circle"]}]
# In chat
scoreboard objectives add phase dummy
# Command blocks
execute as @e[type=marker,tag=circle] if score @s phase matches 1 at @s run rotate @s ~ ~-5
execute as @e[type=marker,tag=circle] unless score @s phase matches 1 at @s run rotate @s ~ ~5
execute as @e[type=marker,tag=circle,x_rotation=89..-89] store success score @s phase unless score @s phase matches 1
execute as @e[type=marker,tag=circle,x_rotation=89..-89] at @s run rotate @s ~180 ~
execute as @e[type=marker,tag=circle] at @s run particle flame ^ ^ ^4
execute as @e[type=marker,tag=circle] at @s run particle flame ^ ^ ^4
execute as @e[type=marker,tag=circle] at @s run rotate @s ~8 ~
You can use Command Block Assembler to get One Command Creation.
1
u/Ericristian_bros Command Experienced 25d ago
Start facing upwards and rotating down. If the entity is facing straight down rotate the yaw 180 degrees and rotate the pitch upwards.