03.05.2010, 23:19
Код:
(865) : error 021: symbol already defined: "strtok" (880) : error 047: array sizes do not match, or destination array is too small
Код:
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; }
Can anyone help me cause when i go into the server for the script it's /login doesn't work. Says Server Unkown command.