26.03.2010, 14:18
Hi
how to get online player count
Ex:
500/150 Player online.
how to get online player count
Ex:
500/150 Player online.
GetPlayersOnServer() { new count; for(new x=0; x< MAX_PLAYERS; x++) { //x = MAX_PLAYERS if(IsPlayerConnected(x))) { count++; } } return count; }