Ha berakom a módba ezt:
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;
}
Akkor nem ír ki errort, de viszont nem indul el a szerver...
[09:38:08] Script[gamemodes/mode.amx]: Run time error 19: \"File or function is not found\"
Dupla hozzászólás automatikusan összefûzve. ( 2012. március 25. - 16:28:22 )
Megoldottam!
MySQL plugin hibája volt...
Amit innen lehet letölteni