GetPlayerPoolSize
From SA-MP Wiki
Description:
Gets the highest playerid currently in use on the server.
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.
- GetVehiclePoolSize: Gets the highest vehicleid currently in use on the server.
- GetMaxPlayers: Gets the maximum number of players that can join the server.