Little help...
#1

Can someone help me with this errors...
Код:
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(124) : error 009: invalid array size (negative, zero or out of bounds)
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2545) : warning 217: loose indentation
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2545) : error 017: undefined symbol "strtok"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2545) : error 033: array must be indexed (variable "tmp")
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2544) : warning 203: symbol is never used: "idx"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2564) : error 017: undefined symbol "strtok"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2564) : error 033: array must be indexed (variable "tmp")
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2563) : warning 203: symbol is never used: "idx"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2583) : error 017: undefined symbol "strtok"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2583) : error 033: array must be indexed (variable "tmp")
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2582) : warning 203: symbol is never used: "idx"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2602) : error 017: undefined symbol "strtok"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2602) : error 033: array must be indexed (variable "tmp")
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2601) : warning 203: symbol is never used: "idx"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2621) : error 017: undefined symbol "strtok"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2621) : error 033: array must be indexed (variable "tmp")
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2620) : warning 203: symbol is never used: "idx"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2661) : error 017: undefined symbol "strtok"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2661) : error 033: array must be indexed (variable "cmd")
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2767) : error 017: undefined symbol "strtok"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2767) : error 033: array must be indexed (variable "tmp")
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2780) : error 017: undefined symbol "strtok"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(2780) : error 033: array must be indexed (variable "tmp")
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(3065) : error 017: undefined symbol "strtok"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(3065) : error 033: array must be indexed (variable "tmp")
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(3112) : error 017: undefined symbol "strtok"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(3112) : error 033: array must be indexed (variable "tmp")
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(3310) : error 017: undefined symbol "strtok"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(3310) : error 033: array must be indexed (variable "tmp")
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(3410) : error 017: undefined symbol "strtok"
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(3410) : error 033: array must be indexed (variable "tmp")
C:\Documents and Settings\pc\Desktop\Los Santos Gang Wars\gamemodes\gangwars.pwn(3419) : error 017: undefined symbol "strtok"

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


26 Errors.
Reply
#2

Looks like you need to get the function "strtok". Sscanf is a better option. Strtok can be found in the "gl_common.inc" include in the server package.

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;
}
Reply
#3

Thank you it works
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)