how do i create a Special effect over the target of my spell? i want to create the especial effect of the "trueShot aura" below the enemy target of my spell until the spell finishes.
this means when i do another specialeffect during the time i wait till the last special effect is destroyed that the triggers doesn't destroy my first special effect.... is there a possibility how i can choose which special effect shall be destroyed?
@babuu, you can set each SFX into its own variable, then you can destroy them later as you wish..
example:
A- create SFX at origin of (castingunit) using blah blah blah
A- set xxxxSFX[1] = last created SFX
A- create SFX at overhead of (castingunit) using blah blah blah
A- set xxxxSFX[2] = last created SFX
when your rdy to destroy them
A- destroy xxxxSFX[1]
A -destroy xxxxSFX[2]