Admin System hat einige Errors brauche hilfe!!!

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
  • hi Leute,
    Ich habe mir bei samp.com nen adm system runtergeladen das ultimativ admin skript oder so auf jeden fall kamen solche errors dabei raus.




    C:\DOKUME~1\Adri\Desktop\ura.pwn(281) : error 017: undefined symbol "strtok"
    C:\DOKUME~1\Adri\Desktop\ura.pwn(281) : error 033: array must be indexed (variable "tmp")
    C:\DOKUME~1\Adri\Desktop\ura.pwn(280) : warning 203: symbol is never used: "idx"
    C:\DOKUME~1\Adri\Desktop\ura.pwn(313) : error 017: undefined symbol "strtok"
    C:\DOKUME~1\Adri\Desktop\ura.pwn(313) : error 033: array must be indexed (variable "tmp")
    C:\DOKUME~1\Adri\Desktop\ura.pwn(312) : warning 203: symbol is never used: "idx"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    4 Errors.


    Was kann man da tun?
    Danke im Vorraus

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


    ganz unten einfügen

    since 2009.

  • Bei deinem Text
    stock SendRaw(senderid, const str[])
    {
    CallRemoteFunction("OnPlayerCommandText", "is", senderid, str);
    }
    #endif
    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;
    }


    traten diese Errors auf
    C:\DOKUME~1\Adri\Desktop\HOMESE~1\WOG\WOGEXT~1\FILTER~1\V-Admin.pwn(5770) : error 021: symbol already defined: "strtok"
    C:\DOKUME~1\Adri\Desktop\HOMESE~1\WOG\WOGEXT~1\FILTER~1\V-Admin.pwn(5785) : error 047: array sizes do not match, or destination array is too small
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    2 Errors.

    Kann mir jemand bei diesem Problem helfen?