Dyn_Haus system

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
  • Hallo.
    Ich habe mir das Dyn_Haus system runter geladen das ist dafür das man ingame häuser erstellen kann usw.... und ich will das in mein GM einfügen aber ich glaub es funktionirt das wegen nicht so ganz:



    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;
    }
    das ist in meinem GF drinne und so ist das im Dyn_Haus:



    strtok(const string[], &index, trenner = ' ')
    {
    new length = strlen(string);
    while ((index < length) && (string[index] <= trenner))
    {
    index++;
    }


    new offset = index;
    new result[20];
    while ((index < length) && (string[index] > trenner) && ((index - offset) < (sizeof(result) - 1)))
    {
    result[index - offset] = string[index];
    index++;
    }
    result[index - offset] = EOS;
    return result;
    }
    Meine frage ist wie muss ich das machen das es passt und funktionirt ?



    kleine frage noch wie kann ich das als pwn cod einfügen das es normal da steht ohne zeilen bruch.. ?

    Das Originale SOR ( Street´s of Reallife ) seit 03.10.2009

  • ja das weiß ich aber wenn ich das nun da einfüge entsteht das so:
    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;}

    Das Originale SOR ( Street´s of Reallife ) seit 03.10.2009

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


    }


    das ist in meinem GF drinne und so ist das im Dyn_Haus:






    strtok(const string[], &index, trenner = ' ')


    {


    new length = strlen(string);


    while ((index < length) && (string[index] <= trenner))


    {


    index++;


    }




    new offset = index;


    new result[20];


    while ((index < length) && (string[index] > trenner) && ((index - offset) < (sizeof(result) - 1)))


    {


    result[index - offset] = string[index];


    index++;


    }


    result[index - offset] = EOS;


    return result;


    }


    geht doch ?(

  • bei mir passirt das immer so:
    Standart:



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


    mit pawn cod:
    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;}


    aber das ist ja nicht mein haupt problem ich brauch hilfe bei meiner ersten frage

    Das Originale SOR ( Street´s of Reallife ) seit 03.10.2009

  • Auf Quellcode stellen...

    Unkompetent. Das neue dynamisch.



    ihr seit schon lustig postet erros aber nicht die zeilen wo sie sind dann können wir euch auch nicht helfen^^


    Lernt Scripten, Leute, und macht eure Augen auf!


    _______________________________________
    50 Beiträge: [x] 300 Beiträge: [x]
    100 Beiträge: [x] 500 Beiträge: [x]
    150 Beiträge: [x] 1000 Beiträge: [x]
    200 Beiträge: [x]
    2000 Beiträge: []
    250 Beiträge: [X] Boardaktivitäten: Profil


    [size=36]_______________________________________

    /Edit: Schmerzt es dir eigentlich nicht so ein Müll zu schreiben 8|