11 lines
214 B
Plaintext
Raw Normal View History

2023-08-08 16:22:17 -04:00
void Air(object oTarget)
{
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_LIGHTNING_S), oTarget);
DelayCommand(6.0, Air(OBJECT_SELF));
}
void main()
{
DelayCommand(3.0, Air(OBJECT_SELF));
}