I am creating a mini-game using skript. Bad news, I am trying to loop blocks in radius 180+ around a block and my server crashes because of the skript checking for many blocks
test2 is just doing the outside of the sphere to show particles on just the outside
can I make a sphere outside with particles that does not check for millions of blocks?
Thankyou to all that help.
Code:
on command /test:
permission:op
trigger:
set {test} to 184
set {test2} to {test} -2
loop blocks in radius {test} around {center}:
if the distance between the loop-block and {center} is less than {test2}:
show wax on at loop-block
test2 is just doing the outside of the sphere to show particles on just the outside
can I make a sphere outside with particles that does not check for millions of blocks?
Thankyou to all that help.