• Hello Guest! Did you know that ProjectKorra has an official Discord server? A lot of discussion about the official server, development process, and community discussion happens over there. Feel free to join now by clicking the link below.

    Join the Discord Server

Particles

xX_FireGaming_Xx

Verified Member
I am asking how to make particle effects when create addon abilities because i have trouble with this. i make it right and the ability shows on my server but nothing comes out when i use it. can u plz type what you use for particles when u make abilities for This plugin? thank u if u did.
 

jedk1

New Member
blocks appearing isnt particles, to make blocks appear you have to get all the locations where you want the blocks to appear, and actually put blocks there, its a rather different code for spawning blocks to spawning particles.
e.g.:
Code:
Block iteratorBlock = iterator.next();
//some code
iteratorBlock.getLocation().getBlock().setType(Material.STATIONARY_LAVA);
//some other code
 

xX_FireGaming_Xx

Verified Member
blocks appearing isnt particles, to make blocks appear you have to get all the locations where you want the blocks to appear, and actually put blocks there, its a rather different code for spawning blocks to spawning particles.
e.g.:
Code:
Block iteratorBlock = iterator.next();
//some code
iteratorBlock.getLocation().getBlock().setType(Material.STATIONARY_LAVA);
//some other code
thnx
 
Top