Difference between revisions of "GetEntityPosition"

From Nomad DB
m (Jan moved page Lua:GetEntityPosition to GetEntityPosition without leaving a redirect)
Line 25: Line 25:
  
 
[[Category:WD2 Lua]]
 
[[Category:WD2 Lua]]
 +
[[Category:WD2 Entity]]

Revision as of 17:57, 14 April 2020

Retrieves a position from an Entity.

Syntax

GetEntityPosition(EntityId, index)
  • EntityId
  • index (number) 0 for x, 1 for y, 2 for z

Example

local lplayerId = GetLocalPlayerEntityId()
if lplayerId ~= GetInvalidEntityId() then
	local x = GetEntityPosition(lplayerId, 0)
	local y = GetEntityPosition(lplayerId, 0)
	local z = GetEntityPosition(lplayerId, 0)
	
	print("Position: ", x, y, z)
end

Related Pages