Difference between revisions of "GetEntityPosition"

From Nomad DB
m
Line 11: Line 11:
  
 
== Example ==
 
== Example ==
<pre>
+
<syntaxhighlight lang="lua">
 
local lplayerId = GetLocalPlayerEntityId()
 
local lplayerId = GetLocalPlayerEntityId()
 
if lplayerId ~= GetInvalidEntityId() then
 
if lplayerId ~= GetInvalidEntityId() then
Line 20: Line 20:
 
print("Position: ", x, y, z)
 
print("Position: ", x, y, z)
 
end
 
end
</pre>
+
</syntaxhighlight >
  
 
== Related Pages ==
 
== Related Pages ==

Revision as of 19:59, 14 April 2020

Retrieves a position from an entity.

Syntax

GetEntityPosition(entityId, component)
  • entityID (string): ID of the target entity
  • component (number): Coordinate component to return (0 = x; 1 = y; 2 = z)
  • Returns (number): position component

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