01.02.2012, 09:55
What is your way to check the amount of players online?
I would do: at ongamemodeinit players = 0
Onplayerconnect players = players + 1;
Onplayersdisconnect players = players -1
new string[128];
format(string, sizeof(string), "There are now %d players online!", players);
SendClientMessageToAll(COLOR_GREY, string);
I would do: at ongamemodeinit players = 0
Onplayerconnect players = players + 1;
Onplayersdisconnect players = players -1
new string[128];
format(string, sizeof(string), "There are now %d players online!", players);
SendClientMessageToAll(COLOR_GREY, string);