DestroyWaypoint

From Onset Developer Wiki
Revision as of 15:49, 29 November 2019 by 28days (talk | contribs) (Created page with "{{Info|Function|Client|1.0}} {{FuncDescription|Destroys an already created waypoint.}} {{FuncSyntax|DestroyWaypoint(waypointid)}} <div class="noprint" style="float:right;">...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
DestroyWaypoint

Type: Function
Context: Client
Introduced: v1.0

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)

See also