14.03.2013, 18:55
Bom tenho um FS... e estб dando o seguinte erro.. :/
Linhas:
ajuda ae :/
Код:
C:\Program Files\Rockstar Games\GM\filterscripts\BlaBla.pwn(2262) : error 021: symbol already defined: "strtok" C:\Program Files\Rockstar Games\GM\filterscripts\BlaBla.pwn(2277) : error 047: array sizes do not match, or destination array is too small 2 Errors.
Код:
{
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;
}

