09.08.2012, 17:21
pawn Код:
CMD:recorde(playerid)
{
new Jogador, Dinheiro, teste, teste2, Ultimo, score, Maior;
for (new x = 0, y = GetMaxPlayers(); x != y; x++)
{
Dinheiro = GetPlayerMoney(x);
score = GetPlayerScore(x);
if (Dinheiro > Ultimo)
{
Maior = Dinheiro;
Jogador = x;
}
if (score > teste2)
{
teste = score;
Jogador = x;
}
Ultimo = Dinheiro;
teste2 = score;
}
format(hstring, sizeof(hstring), "[INFO] O mais rico й %s[ID:%d] - Dinheiro: %d.", pname, Jogador, Maior);
SendClientMessage(playerid, -1, hstring);
format(hstring, sizeof(hstring), "[INFO] O de mais score й %s[ID:%d] - Score: %d.", pname, Jogador, teste);
SendClientMessage(playerid, -1, hstring);
return 1;
}