13.02.2011, 01:41
(
Последний раз редактировалось Peedro Felix; 13.02.2011 в 15:18.
)
Aki os Erros :
Locais Do Erro
PHP код:
C:\Users\ulisses-pc\Documents\Start Life\gamemodes\bpn10.pwn(15804) : error 021: symbol already defined: "strtok"
C:\Users\ulisses-pc\Documents\Start Life\gamemodes\bpn10.pwn(15819) : error 047: array sizes do not match, or destination array is too small
C:\Users\ulisses-pc\Documents\Start Life\gamemodes\bpn10.pwn(18664) : warning 219: local variable "mod" shadows a variable at a preceding level
Locais Do Erro
PHP код:
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;
}