Hi, I'm having issues with using the flamestrike effect, namely when I destroy the Flamestrike1.mdl effect after creating it to avoid leaks the effect never occurs, i.e. the animation never shows up. Here's part of where I'm using it
JASS:
loop
exitwhen i >= 6.0
set tx = x + 256.0 * Cos(i * bj_PI/3)
set ty = y + 256.0 * Sin(i * bj_PI/3)
call DestroyEffect(AddSpecialEffect("Objects\\Spawnmodels\\Other\\NeutralBuildingExplosion\\NeutralBuildingExplosion.mdl", tx, ty))
call DestroyEffect( AddSpecialEffect("Abilities\\Spells\\Human\\FlameStrike\\FlameStrike1.mdl", tx, ty))
set i = i + 1.0
endloop
set i = 0.0