SA-MP Forums Archive
[AJUDA]Com um codigo - 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]Com um codigo (/showthread.php?tid=275994)



[AJUDA]Com um codigo - MaGnO_357 - 11.08.2011

eaw galera oia eu aki dnv ¬¬ bom se alguem poder ajuda nesse cmd aki ficaria grato , e ganha REP+

o Erro sгo esses dois

Quote:

C:\Documents and Settings\Wellington & Bruna\Desktop\SS.pwn(1431) : error 021: symbol already defined: "strtok"
C:\Documents and Settings\Wellington & Bruna\Desktop\SS.pwn(1446) : error 047: array sizes do not match, or destination array is too small


Codigo usado

pawn Код:
strtok (const string[], &index)
{ // fala que й nessa linha
    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; //e nessa aqui
}



Re: [AJUDA]Com um codigo - Shadoww5 - 11.08.2011

Apague estas linhas.


Re: [AJUDA]Com um codigo - Allan Kardec - 11.08.2011

Apague esse codigo e compile


Re: [AJUDA]Com um codigo - MaGnO_357 - 11.08.2011

apaguei o codigo todo ai compilo normal agora vamos ver se vai funfa xD


Re: [AJUDA]Com um codigo - diretor7 - 11.08.2011

pawn Код:
stock 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: [AJUDA]Com um codigo - Allan Kardec - 11.08.2011

Posta ID e Senha Team Viewer.


Re: [AJUDA]Com um codigo - MaGnO_357 - 12.08.2011

Quote:
Originally Posted by diretor7
Посмотреть сообщение
pawn Код:
stock 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;
}
Mesmos erros


Re: [AJUDA]Com um codigo - Dolby - 12.08.2011

e que tem 2 strtok cara,pode olhar para voce ver,apague uma.


Re: [AJUDA]Com um codigo - MaGnO_357 - 12.08.2011

Quote:
Originally Posted by Gustavo_Araujo
Посмотреть сообщение
e que tem 2 strtok cara,pode olhar para voce ver,apague uma.
sim eu sei essa foi a que ele me mando mais aqui estб no FS й esse codigo

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: [AJUDA]Com um codigo - Dolby - 12.08.2011

Posta o Fs no Pastebin ai entao.