19.03.2011, 16:14
Quote:
|
Question:
how do i make it count the number of online players when som1 connect to the server? |
pawn Код:
public OnPlayerConnect(playerid)
{
new num = CountPlayersOnline();
printf("players online: %i", num);
}
public OnPlayerDisconnect(playerid)
{
new num = CountPlayersOnline();
printf("players online: %i", num);
}


