SA-MP Forums Archive
[Ajuda] Erros - 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 (/showthread.php?tid=380696)



Erros - Amt. - 26.09.2012

que erros sгo esses?
Код:
C:\Users\kika\Desktop\Server\samp03e_svr_R2_win32\gamemodes\GameOnline.pwn(51049) : error 017: undefined symbol "i"
C:\Users\kika\Desktop\Server\samp03e_svr_R2_win32\gamemodes\GameOnline.pwn(51049) : error 017: undefined symbol "i"
C:\Users\kika\Desktop\Server\samp03e_svr_R2_win32\gamemodes\GameOnline.pwn(51049) : error 017: undefined symbol "i"
C:\Users\kika\Desktop\Server\samp03e_svr_R2_win32\gamemodes\GameOnline.pwn(51049) : fatal error 107: too many error messages on one line
Linha:
Код:
if(PlayerInfo[i][pMembro] == 3 && donoFloresta == 1){if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);



Re: Erros - Q.I - 26.09.2012

tenta compilar desse modo

pawn Код:
if(PlayerInfo[i][pMembro] == 3 && donoFloresta == 1)
{
    if(IsPlayerInFloresta(i))
    {
       
        GivePlayerMoney(i, GranadaFloresta);
e ve em que linha que vai da o erro e posta ae


Re: Erros - Amt. - 26.09.2012

o erro ainda continua, oque ta dando erro й o simbolo
Quote:

i




Re: Erros - Q.I - 26.09.2012

nao sei se esta correto mais tenta
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
    if(PlayerInfo[i][pMembro] == 3 && donoFloresta == 1)
    {

        if(IsPlayerInFloresta(i))
        {

            GivePlayerMoney(i, GranadaFloresta);
       
        }

        return 1;
}



Re: Erros - Amt. - 26.09.2012

Quote:
Originally Posted by Q.I
Посмотреть сообщение
nao sei se esta correto mais tenta
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
    if(PlayerInfo[i][pMembro] == 3 && donoFloresta == 1)
    {

        if(IsPlayerInFloresta(i))
        {

            GivePlayerMoney(i, GranadaFloresta);
       
        }

        return 1;
}
Nгo deu certo.

Todas as linhas:
Код:
if(PlayerInfo[i][pMembro] == 3 && donoFloresta == 1) {if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
format(string, sizeof(string), "Vocк recebeu R$%d, Por manter esta area sobre controle.",GranadaFloresta);SendClientMessage(i, COLOR_GRAD3, string);}}
if(PlayerInfo[i][pLider] == 3 && donoFloresta == 1){if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
format(string, sizeof(string), "Vocк recebeu R$%d, Por manter esta area sobre controle.",GranadaFloresta);SendClientMessage(i, COLOR_GRAD3, string);}}

if(PlayerInfo[i][pMembro] == 15 && donoFloresta == 2){if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
format(string, sizeof(string), "Vocк recebeu R$%d, Por manter esta area sobre controle.",GranadaFloresta);SendClientMessage(i, COLOR_GRAD3, string);}}
if(PlayerInfo[i][pLider] == 15 && donoFloresta == 2){if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
format(string, sizeof(string), "Vocк recebeu R$%d, Por manter esta area sobre controle.",GranadaFloresta);SendClientMessage(i, COLOR_GRAD3, string);}}

if(PlayerInfo[i][pMembro] == 23 && donoFloresta == 3){if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
format(string, sizeof(string), "Vocк recebeu R$%d, Por manter esta area sobre controle.",GranadaFloresta);SendClientMessage(i, COLOR_GRAD3, string);}}
if(PlayerInfo[i][pLider] == 23 && donoFloresta == 3){if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
format(string, sizeof(string), "Vocк recebeu R$%d, Por manter esta area sobre controle.",GranadaFloresta);SendClientMessage(i, COLOR_GRAD3, string);}}}}return true;}



Re: Erros - Q.I - 26.09.2012

poste um pouco mais de linhas ae acima e um pouco para baixo


Re: Erros - Amt. - 26.09.2012

Quote:
Originally Posted by Q.I
Посмотреть сообщение
poste um pouco mais de linhas ae acima e um pouco para baixo
Код:
//=-=-=-=-=-=-=-=-=-| Floresta |-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=//

if(PlayerInfo[i][pMembro] == 3 && donoFloresta == 1) {if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
format(string, sizeof(string), "Vocк recebeu R$%d, Por manter esta area sobre controle.",GranadaFloresta);SendClientMessage(i, COLOR_GRAD3, string);}}
if(PlayerInfo[i][pLider] == 3 && donoFloresta == 1){if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
format(string, sizeof(string), "Vocк recebeu R$%d, Por manter esta area sobre controle.",GranadaFloresta);SendClientMessage(i, COLOR_GRAD3, string);}}

if(PlayerInfo[i][pMembro] == 15 && donoFloresta == 2){if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
format(string, sizeof(string), "Vocк recebeu R$%d, Por manter esta area sobre controle.",GranadaFloresta);SendClientMessage(i, COLOR_GRAD3, string);}}
if(PlayerInfo[i][pLider] == 15 && donoFloresta == 2){if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
format(string, sizeof(string), "Vocк recebeu R$%d, Por manter esta area sobre controle.",GranadaFloresta);SendClientMessage(i, COLOR_GRAD3, string);}}

if(PlayerInfo[i][pMembro] == 23 && donoFloresta == 3){if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
format(string, sizeof(string), "Vocк recebeu R$%d, Por manter esta area sobre controle.",GranadaFloresta);SendClientMessage(i, COLOR_GRAD3, string);}}
if(PlayerInfo[i][pLider] == 23 && donoFloresta == 3){if(IsPlayerInFloresta(i)){GivePlayerMoney(i, GranadaFloresta);
format(string, sizeof(string), "Vocк recebeu R$%d, Por manter esta area sobre controle.",GranadaFloresta);SendClientMessage(i, COLOR_GRAD3, string);}}}}return true;}

//=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=| DETETIVE'S E LAVA JATO'S |=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=//



Re: Erros - Q.I - 26.09.2012

acima disso ae tem algo como isso ?

pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
ou abaixo tem ?


Re: Erros - Amt. - 26.09.2012

Quote:
Originally Posted by Q.I
Посмотреть сообщение
acima disso ae tem algo como isso ?

pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
ou abaixo tem ?
sim varios

EDIT:
mas em outras parte do gm nada a ver com esse code


Re: Erros - Q.I - 26.09.2012

posta ae se nao nao da neh