SA-MP Forums Archive
[Ajuda] Como resolver estes 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] Como resolver estes erros? (/showthread.php?tid=468361)



Como resolver estes erros? - RicardoMaia - 07.10.2013

pawn Код:
C:\Users\Ricardo\Desktop\SFCRRPG\gamemodes\SFCRRPG.pwn(10) : error 017: undefined symbol "strtok"
C:\Users\Ricardo\Desktop\SFCRRPG\gamemodes\SFCRRPG.pwn(13006) : error 017: undefined symbol "udb_RenameUser"
Linha 10:
pawn Код:
#pragma unused strtok
Linha 1306:
pawn Код:
udb_RenameUser(PlayerName(playerid),inputtext);



Re: Como resolver estes erros? - RicardoMaia - 07.10.2013

Ajuda?


Re: Como resolver estes erros? - Juniiro3 - 07.10.2013

Funзхes nгo declaradas, deve estar faltando include.


Re: Como resolver estes erros? - RicardoMaia - 07.10.2013

Quote:
Originally Posted by Juniiro3
Посмотреть сообщение
Funзхes nгo declaradas, deve estar faltando include.
Quais?


Re: Como resolver estes erros? - HatedS - 07.10.2013

Topo da GM :
pawn Код:
#include <dudb>
E no final :
pawn Код:
strtok(const string[], &index)
{
    new length = strlen(string);
    while ((index < length) && (string[index] <= ' '))
    {
        index++;
    }

    new offset = index;
    new result[20];
    while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = string[index];
        index++;
    }
    result[index - offset] = EOS;
    return result;
}



Re: Como resolver estes erros? - RicardoMaia - 07.10.2013

Quote:
Originally Posted by HatedS
Посмотреть сообщение
Topo da GM :
pawn Код:
#include <dudb>
E no final :
pawn Код:
strtok(const string[], &index)
{
    new length = strlen(string);
    while ((index < length) && (string[index] <= ' '))
    {
        index++;
    }

    new offset = index;
    new result[20];
    while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = string[index];
        index++;
    }
    result[index - offset] = EOS;
    return result;
}
Esse erro:
pawn Код:
C:\Users\Ricardo\Desktop\SFCRRPG\gamemodes\SFCRRPG.pwn(13007) : error 017: undefined symbol "udb_RenameUser"
ainda continua.


Re: Como resolver estes erros? - HatedS - 07.10.2013

pawn Код:
#define udb_RenameUser



Re: Como resolver estes erros? - RicardoMaia - 07.10.2013

Quote:
Originally Posted by HatedS
Посмотреть сообщение
pawn Код:
#define udb_RenameUser
Obrigado. +Rep