[SCRIPTING]Pawno include?

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • Hey bei mir kommt dieser Error bei einen anderen nich:
    C:\Users\André\Desktop\Scripts\xgf.pwn(9487) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(9487) : error 033: array must be indexed (variable "cmd")
    C:\Users\André\Desktop\Scripts\xgf.pwn(9501) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(9501) : error 033: array must be indexed (variable "tmp")
    C:\Users\André\Desktop\Scripts\xgf.pwn(9626) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(9626) : error 033: array must be indexed (variable "tmp")
    C:\Users\André\Desktop\Scripts\xgf.pwn(9665) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(9665) : error 033: array must be indexed (variable "tmp")
    C:\Users\André\Desktop\Scripts\xgf.pwn(9943) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(9943) : error 033: array must be indexed (variable "tmp")
    C:\Users\André\Desktop\Scripts\xgf.pwn(9971) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(9971) : error 033: array must be indexed (variable "tmp")
    C:\Users\André\Desktop\Scripts\xgf.pwn(10013) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(10013) : error 033: array must be indexed (variable "tmp")
    C:\Users\André\Desktop\Scripts\xgf.pwn(10034) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(10034) : error 033: array must be indexed (variable "tmp")
    C:\Users\André\Desktop\Scripts\xgf.pwn(10055) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(10055) : error 033: array must be indexed (variable "tmp")
    C:\Users\André\Desktop\Scripts\xgf.pwn(10164) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(10164) : error 033: array must be indexed (variable "tmp")
    C:\Users\André\Desktop\Scripts\xgf.pwn(10236) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(10236) : error 033: array must be indexed (variable "tmp")
    C:\Users\André\Desktop\Scripts\xgf.pwn(10442) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(10442) : error 033: array must be indexed (variable "tmp")
    C:\Users\André\Desktop\Scripts\xgf.pwn(10561) : error 017: undefined symbol "strtok"
    C:\Users\André\Desktop\Scripts\xgf.pwn(10561) : error 033: array must be indexed (variable "tmp")


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



    26 Errors.

    ich schätze ma da fehlt mir ein include für Pawno aber welcher?


    Wer es weis pls melden!

    since 2009.

  • setzt mal das ganz unten in dein skript


    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;
    }

    Zitat

    Nimm die Dinge wie sie sind: schlag, wenn du schlagen musst, tritt, wenn du Treten musst
    -Bruce Lee