Aantioch_Infernum/_module/nss/tunnels_exit.nss

15 lines
254 B
Plaintext
Raw Permalink Normal View History

2023-08-08 16:22:17 -04:00
//Put this OnUsed
void main()
{
object oPC = GetLastUsedBy();
AssignCommand(oPC, ClearAllActions());
object oTarget = GetWaypointByTag("WP_tunnels_exit");
location lTarget = GetLocation(oTarget);
AssignCommand(oPC, ActionJumpToLocation(lTarget));
}