hey leute
ich habe 2 kleine probleme im selfmade
1.
C:\Dokumente und Einstellungen\Nilos\Desktop\Selfmade\gamemodes\new.pwn(10217) : error 021: symbol already defined: "strtok"
C:\Dokumente und Einstellungen\Nilos\Desktop\Selfmade\gamemodes\new.pwn(10232) : error 047: array sizes do not match, or destination array is too small
2.
strtok(const string[], &index)
{// Error 1
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;// error 2
}
ich h0ffe mir kann jemand helfen