16.11.2013, 12:43
How To get The Number Of Online Players In Textdraw...?
Iter_Count(Player)
stock CountPlayers( )
{
new
count
;
for( new i; i != MAX_PLAYERS; i++ ) if( IsPlayerConnected( i ) && !IsPlayerNPC( i ) ) count++;
return count;
}
Iter_Count(Player)
CountPlayers( )