Weave.Self.Teleport

Instantly moves you to the specified coordinates.

Syntax

Weave.Self.Teleport(x, y, z)

Parameters

xnumber

X coordinate

ynumber

Y coordinate

znumber

Z coordinate

Example

-- Teleport to Legion Square
Weave.Self.Teleport(195.0, -933.0, 30.0)

-- Teleport up from current position
local pos = Weave.Self.Pos()
Weave.Self.Teleport(pos.x, pos.y, pos.z + 10.0)