25.06.2015, 12:06
Hello!
Can you do anything with this?
- Mencent
PHP код:
new players_online;
for(new i;i<MAX_PLAYERS;i++)
{
if(!IsPlayerConnected(i))continue;
if(IsPlayerNPC(i))continue;
players_online ++;
}
//players_online has the value of the online players
- Mencent