15.04.2012, 09:58
I want to Count the players that online and Print the Number when any Player Joines!
Код:
new players
public onplayerconnect
{
players+=1;
printf("there are Currently %d online",players);
public OnPlayerDisconnect(playerid, reason)
} return 1;
{
players--;
printf("there are currently %d players online ",players);
return 1;
}

