1
0
EQ2Emu/docs/lua_functions/SendWaypoints.md
2025-05-28 21:48:33 -04:00

17 lines
415 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### Function: SendWaypoints(Player)
**Description:** Sends the Player the visual/guiding waypoints provided through AddWaypoint.
**Parameters:**
`Player`: Spawn The Player to update their waypoints by sending the packet update.
**Returns:** None.
**Example:**
```lua
-- Add a waypoint to the client and send the waypoints
AddWaypoint(Player, "Lets go here!", 102.5, -12.3, 230.0)
SendWaypoints(Player)
```