09.08.2012, 16:53
Код:
C:\Documents and Settings\Bruno Alves\Desktop\[TDM]Brasil Top Killers\gamemodes\BTV.pwn(1431) : warning 202: number of arguments does not match definition C:\Documents and Settings\Bruno Alves\Desktop\[TDM]Brasil Top Killers\gamemodes\BTV.pwn(1431) : warning 202: number of arguments does not match definition C:\Documents and Settings\Bruno Alves\Desktop\[TDM]Brasil Top Killers\gamemodes\BTV.pwn(1431) : warning 202: number of arguments does not match definition C:\Documents and Settings\Bruno Alves\Desktop\[TDM]Brasil Top Killers\gamemodes\BTV.pwn(1426) : warning 204: symbol is assigned a value that is never used: "Maior" C:\Documents and Settings\Bruno Alves\Desktop\[TDM]Brasil Top Killers\gamemodes\BTV.pwn(1427) : warning 204: symbol is assigned a value that is never used: "Jogador" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 5 Warnings.
pawn Код:
CMD:testii(playerid){
new Jogador, Dinheiro, Ultimo, Maior;
for(new x = 0, y = GetMaxPlayers(); x != y; x++)
{
Dinheiro = GetPlayerMoney(x);
if(Dinheiro > Ultimo)
{
Maior = Dinheiro;
Jogador = x;
}
Ultimo = Dinheiro;
}
SendClientMessage(playerid, -1,"O mais rico й %s [id: %d.] Dinheiro: %d." ,pname, Jogador, Maior);
return 1;
}