27.03.2014, 17:08
Alguem poderia me ajudar como fasso para fazer um Loop com a include foreach para contar o total de player conectados.
foreach (new i : Player)
{
printf("%d", i);
}
new PlayersOnline;
for(new i = 0; i < MAX_PLAYERS; i++)
{
IsPlayerConnected(i)
{
PlayersOnline++;
}
return 1;
}
SendClientMessageToAll(-1, PlayersOnline);
new playersOnline;
for(new i; i < GetMaxPlayers(); ++i)
if(IsPlayerConnected(i))
++playersOnline;
new string[64];
format(string, 32, "Total: %d jogadores conectados.", playersOnline);
SendClientMessageToAll(-1, string);