15.01.2012, 14:11
Oh interesting, thanks for posting. Perhaps you can help me solve these new errors with another function?
Here are the errors:
pawn Код:
forward bool:IsLEOVeh(val);
stock bool:IsLEOVeh(val) // line 301
{
static s_iValArray[] =
{
1, -, 33, 24064
};
if (val > 601) // line 307
{
return true; // line 309
}
val -= 427;
if (val < 0)
{
return true;
}
return !(s_iValArray[val >> 5] & (1 << (val & 0x1F)));
}
Код:
(301) : error 010: invalid function or declaration (301 -- 307) : error 010: invalid function or declaration (301 -- 309) : error 010: invalid function or declaration (301 -- 309) : fatal error 107: too many error messages on one line