Hallo Community,
ich hatte heute 6 Pano error, die ich nun auf 2 vermindern konnte.
jetzt komme ich jedoch nicht weiter und brauche dringend eure hilfe!
Hier der fehler text:
C:\Users\TOSHIBA\Desktop\sunsetcity.pwn(11835) : error 021: symbol already defined: "strtok"
C:\Users\TOSHIBA\Desktop\sunsetcity.pwn(11850) : error 047: array sizes do not match, or destination array is too small
Hier der Pawno text von strtok
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;
}
Ich hoffe ihr könnt mir helfen
Mit freundlichen grüßen Antony