09.08.2012, 16:57
Quote:
Код:
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 Код:
|
pawn Код:
CMD:testii(playerid){
new Jogador, Dinheiro, Ultimo, Maior,String[128];
for(new x = 0, y = GetMaxPlayers(); x != y; x++)
{
Dinheiro = GetPlayerMoney(x);
if(Dinheiro > Ultimo)
{
Maior = Dinheiro;
Jogador = x;
}
Ultimo = Dinheiro;
}
format(String, sizeof(String), "[INFO] O mais rico й %s[ID:%d] - Dinheiro: %d.", pname, Jogador, Maior);
SendClientMessage(playerid, -1, String);
return 1;
}