Difference between revisions of "GetPlayerIdFromPlayerIndex"

From Nomad DB
(Created page with "Returns the Player ID based on the given Player Index. == Syntax == <pre> GetPlayerIdFromPlayerIndex(playerIndex) </pre> == Example == The example below checks wheth...")
 
Line 5: Line 5:
 
GetPlayerIdFromPlayerIndex(playerIndex)
 
GetPlayerIdFromPlayerIndex(playerIndex)
 
</pre>
 
</pre>
 +
* '''playerIndex''' (number) Player index
 +
* '''Returns: [[PlayerID]]'''
  
 
== Example ==
 
== Example ==

Revision as of 18:48, 14 April 2020

Returns the Player ID based on the given Player Index.

Syntax

GetPlayerIdFromPlayerIndex(playerIndex)
  • playerIndex (number) Player index
  • Returns: PlayerID

Example

The example below 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