Particle plugin [1.8-9-10] 50% OFF for 20 first buyers ! Vouched 2/2

Status
This thread has been locked.
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Civious

Feedback score
0
Posts
45
Reactions
47
Resources
0
All is included into the plugin but you can create effects :
Code:
ParticleEffect eff =  new ParticleEffect(player, Particle, Position, speed);
ParticleEffect is a runnable class, so it start when it is instantiated, you can stop just with :
Code:
eff.stopEffect();
It's posible to modify the effect :
Code:
eff.setPosition(position);
eff.setParticle(particle);

With the last update, you can now create block effects, to begin create PlayerArea :
Code:
PlayerArea area = new PlayerArea(p);
Then you can add locations to this area (it's recomended to don't add more than 50 locations) :
Code:
area.addLocation(loc);
And to launch this effect, just use :
Code:
area.launchParticle(particle);
This effect is launched one time, so you don't have to stop it.

Edit : Particle and Position are enum class, you have to choose one position and one particle to instanciate new ParticleEffect and just particle to blocks effects. Blocks effects will launch particles arround blocks location you selected (cube effect).
 
Last edited:
Status
This thread has been locked.
Top