PWE_PRC8/_module/nss/enterchance003.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

15 lines
570 B
Plaintext

void main()
{
object user=GetLastUsedBy();
if(!GetIsObjectValid(user)||!GetIsPC(user))
return; // We only do this for PC's
// Set up our fire-and-forget visual effect.
// Any of the VFX_FNF constants should work here, depending on what you want.
effect eff=EffectVisualEffect(VFX_FNF_SUNBEAM);
object target=GetObjectByTag("NW_EnterChance003");
AssignCommand(user,ClearAllActions());
// Fire our visual effect
ApplyEffectToObject(DURATION_TYPE_INSTANT,eff,OBJECT_SELF);
AssignCommand(user,ActionJumpToObject(target));
}