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.. ?