Weave.Self.Teleport
Instantly moves you to the specified coordinates.
Syntax
Weave.Self.Teleport(x, y, z)Parameters
xnumberX coordinate
ynumberY coordinate
znumberZ 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)