GetLocalPlayerEntityId

From Nomad DB
Revision as of 18:26, 14 April 2020 by Wasdennnoch (talk | contribs)

This functions return the Entity Id of the local player. Under some circumstances it's possible for the returned entity ID to not exist and thus should be checked against GetInvalidEntityId.

Syntax

GetLocalPlayerEntityId()

Example

The example below checks to see if the Entity Id for the player is valid.

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

Related Pages