WoR_PRC8/_module/nss/s_vaudept.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

21 lines
376 B
Plaintext

void main()
{
object oPC = GetLastUsedBy();
if (!GetIsPC(oPC)) return;
object oTarget;
location lTarget;
oTarget = GetWaypointByTag("P_VaudePT");
lTarget = GetLocation(oTarget);
if (GetAreaFromLocation(lTarget)==OBJECT_INVALID) return;
DelayCommand(3.0 , AssignCommand(oPC, ClearAllActions()));
DelayCommand(3.0 , AssignCommand(oPC, ActionJumpToLocation(lTarget)));
}