06.07.2011, 23:00
hi,
you could also count the players with a variable on the server:
//edit: damn, too slow
you could also count the players with a variable on the server:
pawn Код:
new Players;
//OnPlayerConnect
Players++;
//OnPlayerDisconnect
Players--;
//and show them where u want...
format(string, sizeof(string), "%d Players Online", Players);
SendClientMessage(playerid,colour,string);
regards, wolf.
