[Ajuda] Erros no GM
#1

Galera, o meu GM estб dando esses erros, e nгo sei como resolver, serб que tem como vocкs me ajudarem ?

pawn Код:
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(3124) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(3125) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(3126) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(3127) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(3128) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(3129) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(3130) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(3123) : warning 204: symbol is assigned a value that is never used: "index"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(3876) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(3876) : error 033: array must be indexed (variable "cmd")
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(3960) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(3960) : error 033: array must be indexed (variable "tmp")
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4058) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4058) : error 033: array must be indexed (variable "tmp")
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4175) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4175) : error 033: array must be indexed (variable "tmp")
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4219) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4219) : error 033: array must be indexed (variable "tmp")
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4279) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4279) : error 033: array must be indexed (variable "tmp")
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4650) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4650) : error 033: array must be indexed (variable "tmp")
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4763) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4763) : error 033: array must be indexed (variable "tmp")
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4865) : error 017: undefined symbol "strtok"
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(4865) : error 033: array must be indexed (variable "tmp")
C:\Users\Trevas\Downloads\Virtual World\gamemodes\BVW.pwn(5020) : error 017: undefined symbol "strtok"

Compilation aborted.Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


26 Errors.
Reply
#2

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;
}
no final do seu script
Reply
#3

Vlw Jizzy.

+REP
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)