Aantioch_Infernum/_module/nss/plane_air_fx.nss

13 lines
305 B
Plaintext
Raw Permalink Normal View History

2023-08-08 16:22:17 -04:00
void main()
{
effect eVis = EffectVisualEffect(VFX_FNF_LOS_NORMAL_10);
effect eVis2 = EffectVisualEffect(VFX_DUR_PARALYZE_HOLD);
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eVis, GetLocation(OBJECT_SELF));
ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, eVis2, GetLocation(OBJECT_SELF),3.0);
}