[Ajuda] 1 Erro
#1

Compilei o gm normalmente.

Sai do pawn, abri joguei la testei...

Quando voltei nao fiz ABSOLUTAMENTE NADA NO GM so compilei pra ver.

E Ele deu 1 erro sem eu mecher em nada nele.

Erros.

Код:
C:\Users\Jorge\Desktop\SAMP 0.3c\gamemodes\BBG3.pwn(57963) : error 021: symbol already defined: "strtok"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
Esse erro sendo que nem mechi no gm depois.

Nao sei mais oque fazer.

Alguem puder ajudar
Reply
#2

Na linha 57963 tem uma new strtok, mas ela jб foi definida!
Entгo apague-a.
Reply
#3

apaga strtok.

Procura por :



strtok(const string[], &index)

e apaga atй
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;
}

resolvido;.
Reply
#4

Vlws, Voces me salvaram kk vlws mesmo
Reply
#5

Qualquer coisa chama que ajudamos.
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)