13 lines
225 B
Plaintext
13 lines
225 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
effect eVis = EffectVisualEffect(VFX_IMP_LIGHTNING_M);
|
||
|
|
||
|
float fDelay = IntToFloat(Random(300)) * 0.01;
|
||
|
|
||
|
DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_PERMANENT,(eVis), OBJECT_SELF));
|
||
|
|
||
|
}
|