GetDoorLocation

From Onset Developer Wiki
GetDoorLocation

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Gets the XYZA vector of the specified door created earlier with CreateDoor.

Syntax

GetDoorLocation(door)

Parameters

  • door
    The door specifier

Return Value

  • the x, y, z and yaw vectors of the door location.

Example

AddCommand("doorlocation", function(playerid)
	local X, Y, Z, A = GetDoorLocation(doorid)
	AddPlayerChat(player, "Door location: "..X..", "..Y..", "..Z..", "..A)
end)

See also