1
0
EQ2Emu/docs/lua_functions/RemoveWaypoint.md
2025-05-14 09:46:52 -04:00

462 B
Raw Blame History

Function: RemoveWaypoint(Player, WaypointIndex)

Description: Removes the guiding waypoint for the Player. SendWaypoints should also be sent after.

Parameters:

Player: Spawn  The NPC whose waypoint path to modify.
Name: String - The name of the waypoint supplied originally when AddWaypoint was called.

Returns: None.

Example:

-- Example usage (remove a previously added waypoint) RemoveWaypoint(Player, "PreviousWaypoint") SendWaypoints(Player)