Detaljan opis problema:
G:\Ravens\yber\filterscripts\bizz.pwn(640) : error 021: symbol already defined: "strtok"
G:\Ravens\yber\filterscripts\bizz.pwn(655) : 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.
Dio skripte:
Neke slike/video za lakse dobivanje pomoci(neobavezno):
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string <= ' '))
{
index++;
}
new offset = index;
new result;
while ((index < length) && (string > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string;
index++;
}
result[index - offset] = EOS;
return result;d
}