PWE_PRC8/_module/nss/backtocabin.nss

19 lines
344 B
Plaintext
Raw Permalink Normal View History

2025-04-03 10:29:41 -04:00
void main()
{
object oPC = GetPCSpeaker();
AssignCommand(oPC, ClearAllActions());
object oTarget;
oTarget = GetWaypointByTag("NW_DEATH_TEMPLE");
DelayCommand(3.0, AssignCommand(oPC, ActionJumpToObject(oTarget)));
oTarget = oPC;
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_UNSUMMON), GetLocation(oTarget));
}