Difference between revisions of "GetPlayerIdFromPlayerIndex"

From Nomad DB
m
m
 
Line 9: Line 9:
  
 
== Example ==
 
== Example ==
The example below checks whether the [[EntityId|entity ID]] of the local player is valid or not.
+
Checks whether the [[EntityId|entity ID]] of the local player is valid or not.
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
local playerCount = GetNumberOfPlayers()
 
local playerCount = GetNumberOfPlayers()

Latest revision as of 19:56, 16 April 2020

Retrieves the player ID from the specified player index.

Syntax

GetPlayerIdFromPlayerIndex(playerIndex)
  • playerIndex (number): Target player index
  • Returns (number): ID of the specified player

Example

Checks whether the entity ID of the local player is valid or not.

local playerCount = GetNumberOfPlayers()
for i = 0, playerCount - 1 do
    local playerId = GetPlayerIdFromPlayerIndex(i)
    local playerNameDebug = GetPlayerNameDebug(playerId)
    if playerNameDebug == "2XTheTap" then
        -- do stuff
    end
end

Related Pages