11 lines
214 B
Plaintext
11 lines
214 B
Plaintext
|
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));
|
||
|
}
|