Moin LEute,
Komme bei den 2 Errors nicht weiter:
Zeile (53550) : Variable wurde bereits definiert: "strtok"Zeile (53565) : error 047: array sizes do not match, or destination array is too small
2 Errors, 0 WarnungenDu hast Errors im Skript. Kompilierung abgebrochen
PWNMod Compiler Version 1.2(c) Trooper[Y]In Kooperation mit GTA-Servers.de
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;}
Die beiden Errors sind bei dem { und der 2 Beim return result;
Euer BHF