RATDOG/_module/nss/at_move2latrene3.nss

15 lines
327 B
Plaintext
Raw Permalink Normal View History

void main()
{
object oTarget;
// Get the PC who is in this conversation.
object oPC = GetPCSpeaker();
// Find the location to which to teleport.
oTarget = GetWaypointByTag("WP_LATRENE3");
// Teleport the PC.
AssignCommand(oPC, ClearAllActions());
AssignCommand(oPC, JumpToObject(oTarget));
}