09.08.2012, 17:16
vlw rjj , @Riichard e Chefгo, olhem agr add tbm score funcionou mais acho q fico mal identado, se tiver como identar melhor me ajude.
PHP код:
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;
}