Rune_PRC8/_module/nss/namefairyhb.nss

12 lines
481 B
Plaintext
Raw Normal View History

2024-09-13 09:10:39 -04:00
void main()
{
if (!GetLocalInt(OBJECT_SELF, "hls_invis"))
{
//leave it here rather than add the one time loop to EVERY creature through a OS script change
ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectVisualEffect(VFX_DUR_CUTSCENE_INVISIBILITY), OBJECT_SELF);
ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectCutsceneGhost(), OBJECT_SELF);
SetLocalInt(OBJECT_SELF, "hls_invis",1);
}
ExecuteScript("nw_ch_ac1", OBJECT_SELF);
}