Hallo,
ich habe mal ein bisschen das Script verändert.
Ich bekam aber immer wieder diese Fehlermeldung
C:\Documents and Settings\-------\Desktop\xgf EDIT\xgf2.pwn(29528) : error 021: symbol already defined: "strtok"
C:\Documents and Settings\-------\Desktop\xgf EDIT\xgf2.pwn(29542) : error 047: array sizes do not match, or destination array is too small
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.
Das steht in und zwischen den Zeilen alles:
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;
}
Was ist daran falsch?
Ich hab sogar schon bei den beiden Zeilen Copy&Past vom alten Backup versucht, aber negativ ...
Ich bitte um eine schnelle Antwort!