24.01.2010, 20:25
Please Help me with this:
And someone told me it was this thingy:
Код:
C:\Documents and Settings\Sam\Desktop\ServerD\filterscripts\bfxUDx2.pwn(456) : warning 235: public function lacks forward declaration (symbol "OnPlayerPrivmsg") C:\Documents and Settings\Sam\Desktop\ServerD\filterscripts\bfxUDx2.pwn(464) : error 047: array sizes do not match, or destination array is too small C:\Documents and Settings\Sam\Desktop\ServerD\filterscripts\bfxUDx2.pwn(504) : error 047: array sizes do not match, or destination array is too small C:\Documents and Settings\Sam\Desktop\ServerD\filterscripts\bfxUDx2.pwn(507) : error 047: array sizes do not match, or destination array is too small C:\Documents and Settings\Sam\Desktop\ServerD\filterscripts\bfxUDx2.pwn(510) : error 047: array sizes do not match, or destination array is too small C:\Documents and Settings\Sam\Desktop\ServerD\filterscripts\bfxUDx2.pwn(513) : error 047: array sizes do not match, or destination array is too small C:\Documents and Settings\Sam\Desktop\ServerD\filterscripts\bfxUDx2.pwn(573) : error 047: array sizes do not match, or destination array is too small C:\Documents and Settings\Sam\Desktop\ServerD\filterscripts\bfxUDx2.pwn(649) : warning 235: public function lacks forward declaration (symbol "OnPlayerInfoChange") Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 6 Errors.
And someone told me it was this thingy:
Код:
/* STRTOK
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;
}*/

