[Ajuda] Me ajudem por favor
#7

Quote:
Originally Posted by Bruno Alves
Посмотреть сообщение
Код:
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;
}
Tentei passar para SendClient... e deu warnings me ajudem por favor
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;
}
Reply


Messages In This Thread
Me ajudem por favor - by Bruno Alves - 09.08.2012, 15:39
Re: Me ajudem por favor - by Coreia - 09.08.2012, 15:44
Re: Me ajudem por favor - by Bruno Alves - 09.08.2012, 15:48
Re: Me ajudem por favor - by Chefгo - 09.08.2012, 15:55
Re: Me ajudem por favor - by rjjj - 09.08.2012, 16:00
Re: Me ajudem por favor - by Bruno Alves - 09.08.2012, 16:53
Re: Me ajudem por favor - by @Riichard - 09.08.2012, 16:57
Re: Me ajudem por favor - by Bruno Alves - 09.08.2012, 17:16
Re: Me ajudem por favor - by @Riichard - 09.08.2012, 17:21

Forum Jump:


Users browsing this thread: 1 Guest(s)