CreateWaypoint
From Onset Developer Wiki
Description
Creates a waypoint in the world. Distance is calculated automatically and shown to the player.
Syntax
CreateWaypoint(name, x, y, z)
Parameters
- name
Text that appears on the waypoint. Pass an empty string to remove a waypoint. - x
Coordinate X - y
Coordinate Y - z
Coordinate Z
Return Value
- Returns the waypoint identifier.
Example
function OnKeyPress(k)
if k == "K" then
local x, y, z = GetPlayerLocation()
CreateWaypoint("Saved Location", x, y, z)
end
end
AddEvent("OnKeyPress", OnKeyPress)