25.06.2015, 09:27
I wanted to know how to create like when someone joins the server then it should say like There are currently 2players online
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