DestroyWaypoint
From Onset Developer Wiki
Description
Destroys an already created waypoint.
Syntax
DestroyWaypoint(waypointid)
Parameters
- waypointId
The waypoint identifier.
Return Value
- Returns the waypoint identifier.
Example
function OnKeyPress(k)
if k == "L" then
DestroyWaypoint(waypointId)
end
end
AddEvent("OnKeyPress", OnKeyPress)