- Joined
- Mar 10, 2009
- Messages
- 5,016
I just want to know why this doesnt work...
The effect shows but very quick and incomplete for this one;
But this works;
Perhaps it depends on how long the effect will last or animation of effect needs precise timing?...
JASS:
call DestroyEffect(AddSpecialEffectTarget(SFX, .missile, "origin"))
call KillUnit(.missile)
The effect shows but very quick and incomplete for this one;
JASS:
call DestroyEffect(AddSpecialEffectTarget(SFX, .missile, "origin"))
call UnitApplyTimedLife(.missile, 'BTLF', 0.1)
But this works;
JASS:
call DestroyEffect(AddSpecialEffectTarget(SFX, .missile, "origin"))
call UnitApplyTimedLife(.missile, 'BTLF', 2.0)
Perhaps it depends on how long the effect will last or animation of effect needs precise timing?...