GetPlayerPoolSize

From SA-MP Wiki

Jump to: navigation, search

GetPlayerPoolSize was added in SA-MP 0.3.7 This function was added in SA-MP 0.3.7 and will not work in earlier versions!


Description:

Gets the highest playerid currently in use on the server.


Parameters:
This function has no parameters.


Return Values:

The highest playerid currently in use on the server or 0 if there are no connected players.


Example Usage:

FreezeAll()
{
    for(new i = 0, j = GetPlayerPoolSize(); i <= j; i++) // note that we assign the return value to a new variable (j) to avoid calling the function with each iteration
    {
        TogglePlayerControllable(i, 0);
    }
}

Related Functions

The following functions may be helpful as they relate to this function in one way or another.

  • GetMaxPlayers: Gets the maximum number of players that can join the server.
Personal tools
Navigation
Toolbox