3 Errors -> tmp undefined

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
  • C:\Dokumente und Einstellungen\Albina - Johann\Desktop\StuntHole\StuntHole1.2a.pwn(901) : error 017: undefined symbol "tmp"
    C:\Dokumente und Einstellungen\Albina - Johann\Desktop\StuntHole\StuntHole1.2a.pwn(902) : error 017: undefined symbol "tmp"
    C:\Dokumente und Einstellungen\Albina - Johann\Desktop\StuntHole\StuntHole1.2a.pwn(907) : error 017: undefined symbol "tmp"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    3 Errors.


    Wie kann ich die defenieren?
    unter public OnPlayerCommand...^^
    *blöde frage ich weiss*

    GreetZ

    Zitat

    Joda21:47
    Joda = mein spritzname
    xD


    Ice21:47
    zeig mir dein lichtschwert !


    Joda21:47 spitzname* xDD

    Ich bin ein Vogel (Joda)


  • glaube so
    tmp = strtok(cmdtext, idx);


    wenn du strtok net im script hast hier
    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;
    }

  • new idx, tmp[256];
    tmp=strtok(cmdtext,idx);

  • ah sry hab das vergessen ^^
    new idx, tmp[256];