GetWaypointByTag
From NWN Lexicon
Jump to navigationJump to search
GetWaypointByTag(string)
Get the first waypoint with a specified tag.
Parameters
sWaypointTag
Tag of waypoint.
Description
Returns, as an object, the first waypoint with the tag sWaypointTag.
Returns OBJECT_INVALID if the waypoint cannot be found.
Version
1.22
Example
// Attached to OnClick event of a trigger. Sends clicker to
// destination defined by waypoint WP_Destination.
void main()
{
object oClicker = GetClickingObject();
object oTarget = GetWaypointByTag("WP_Destination");
location lDest = GetLocation(oTarget);
AssignCommand(oClicker, ActionJumpToLocation(lDest));
}
// destination defined by waypoint WP_Destination.
void main()
{
object oClicker = GetClickingObject();
object oTarget = GetWaypointByTag("WP_Destination");
location lDest = GetLocation(oTarget);
AssignCommand(oClicker, ActionJumpToLocation(lDest));
}
See Also
author: Kristian Markon, editor: Jeremy Spilinek