[Ajuda] HELP - 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] HELP (
/showthread.php?tid=640662)
HELP -
DigoosX - 05.09.2017
alguem me ajuda ae : error 001: expected token: ";", but found "-identifier-"
Re: HELP -
Psicotico - 05.09.2017
Posta a linha do erro, e uma linha anterior tambйm.
Re: HELP -
DigoosX - 05.09.2017
showTelaLogin(playerid){
for(new x; x; != 17; x++){
TextDrawShowForPlayer(playerid, textTelaLogin[x]);
}
SelectTextDraw(playerid,0xFFFFFFFF);
}
Re: HELP -
fxckshzt - 05.09.2017
Mande as linhas do erro. Este erro signifca que o compilador aguardava ";" e vocк nгo utilizou. Na certa vocк esqueceu de fechar alguma linha... Mande as linhas!
Re: HELP -
PedroH - 05.09.2017
Quote:
showTelaLogin(playerid){ provavelmente e aqui que ta faltando o ; no final!
for(new x; x; != 17; x++){
TextDrawShowForPlayer(playerid, textTelaLogin[x]);
}
SelectTextDraw(playerid,0xFFFFFFFF);
}
|
.....
Re: HELP -
fxckshzt - 05.09.2017
Como assim um ponto e virgula depois da variavel dnv??
PHP код:
for(new x; x; != 17; x++)
Tente assim:
PHP код:
for(new x; x !=17; x++){
@Edit:
Isso parece ser uma forward, forwards nгo й necessбrio colocar ponto e virgula na abertura.
veja se vocк tem a "forward showTelaLogin(playerid);" inserida no seu gamemode!
Re: HELP -
DigoosX - 05.09.2017
OBRIGADO RESOLVIDO.