GetLocalPlayerEntityId

From Nomad DB
Revision as of 19:05, 14 April 2020 by Wasdennnoch (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This functions return the Entity ID of the local player. Under some circumstances it's possible for the returned ID to be invalid, thus should be checked against GetInvalidEntityId.

Syntax

GetLocalPlayerEntityId()

Example

The example below checks whether the Entity ID of the local player is valid or not.

local lplayerId = GetLocalPlayerEntityId()
if lplayerId == GetInvalidEntityId() then
	print("Invalid local player")
else
	print("Got the local player ID")
end

Related Pages