Shape Locations (Expression) — skript-particle
Addon: skript-particle · Category: Expression · Since: 1.0.0
Syntax
(particle|point) locations of %shapes% [[centered] %direction% %location%]Description
Returns all the locations that particles would be spawned at if the shape was centered at the given location. If you want the vectors relative to the center of the shape, use the 'shape points' expression.
Examples
set {_locations::*} to point locations of (circle of radius 10) centered at player
teleport player to random element of {_locations::*}
# drawing the shape yourself: (skbee particle syntax)
draw 1 red dust at (particle locations of (circle of radius 10) centered at player)