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...")
(No difference)

Revision as of 18:44, 14 April 2020

Returns the Player ID based on the given Player Index.

Syntax

GetPlayerIdFromPlayerIndex(playerIndex)

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