SA-MP Forums Archive
[Ajuda] Erros ao Compilar - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Erros ao Compilar (/showthread.php?tid=415335)



Erros ao Compilar - IGp - 12.02.2013

C:\Users\Vitor\Desktop\Downloads\BnV\gamemodes\BNV .pwn(2809) : warning 225: unreachable code
C:\Users\Vitor\Desktop\Downloads\BnV\gamemodes\BNV .pwn(2809) : error 017: undefined symbol "string"
C:\Users\Vitor\Desktop\Downloads\BnV\gamemodes\BNV .pwn(2809) : error 017: undefined symbol "string"
C:\Users\Vitor\Desktop\Downloads\BnV\gamemodes\BNV .pwn(2809) : error 029: invalid expression, assumed zero
C:\Users\Vitor\Desktop\Downloads\BnV\gamemodes\BNV .pwn(2809) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


4 Errors.
Linha 2809 :
Код:
format( string, sizeof( string ), "%s (%d) Foi banido |Motivo|: Conta estб banida", aname,playerid);
Comando completo :
Код:
//if(dini_Int("banidos.ini",PlayerName(playerid)) == 1)
//{
//SendClientMessage(playerid, 0x11B1FFAA, "Vocк foi banido |Motivo|: Conta estб banida!");
format( string, sizeof( string ), "%s (%d) Foi banido |Motivo|: Conta estб banida", aname,playerid);
SendClientMessageToAll(0x11B1FFAA, string);
Kick(playerid);
return 0;
}



Re: Erros ao Compilar - leonardo_reis - 12.02.2013

Quote:
Originally Posted by IGp
Посмотреть сообщение
C:\Users\Vitor\Desktop\Downloads\BnV\gamemodes\BNV .pwn(2809) : warning 225: unreachable code
C:\Users\Vitor\Desktop\Downloads\BnV\gamemodes\BNV .pwn(2809) : error 017: undefined symbol "string"
C:\Users\Vitor\Desktop\Downloads\BnV\gamemodes\BNV .pwn(2809) : error 017: undefined symbol "string"
C:\Users\Vitor\Desktop\Downloads\BnV\gamemodes\BNV .pwn(2809) : error 029: invalid expression, assumed zero
C:\Users\Vitor\Desktop\Downloads\BnV\gamemodes\BNV .pwn(2809) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


4 Errors.
Linha 2809 :
Код:
format( string, sizeof( string ), "%s (%d) Foi banido |Motivo|: Conta estб banida", aname,playerid);
Comando completo :
Код:
//if(dini_Int("banidos.ini",PlayerName(playerid)) == 1)
//{
//SendClientMessage(playerid, 0x11B1FFAA, "Vocк foi banido |Motivo|: Conta estб banida!");
format( string, sizeof( string ), "%s (%d) Foi banido |Motivo|: Conta estб banida", aname,playerid);
SendClientMessageToAll(0x11B1FFAA, string);
Kick(playerid);
return 0;
}
Vocк esta usando o include Dini?


Re: Erros ao Compilar - .FuneraL. - 12.02.2013

pawn Код:
if(dini_Int("banidos.ini",PlayerName(playerid)) == 1)
{
    SendClientMessage(playerid, 0x11B1FFAA, "Vocк foi banido |Motivo|: Conta estб banida!");
    new string[150];
    format( string, sizeof( string ), "%s (%d) Foi banido |Motivo|: Conta estб banida", aname,playerid);
    SendClientMessageToAll(0x11B1FFAA, string);
    Kick(playerid);
    return 0;
}