zz, zasto dobijam ove errore
E:\SAMP Server\FilterSkripti\Filterscripta COS-a By Bloomer\filterscript\cos.pwn(626) : error 021: symbol already defined: "strtok"
E:\SAMP Server\FilterSkripti\Filterscripta COS-a By Bloomer\filterscript\cos.pwn(640) : error 047: array sizes do not match, or destination array is too small


na ove redove
Quote
stock 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;
}


to zdebeleno je line 262

a ovo dole zdebeleno je line 640
Quote
stock 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;
}