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