12.03.2013, 14:51
I wrote this test filterscript and ran it, and it worked fine:
Outputs "Hello".
Perhaps you're using it wrong.
pawn Код:
#include a_samp
public OnFilterScriptInit()
{
new dest[128];
new source[] = "Hello World!";
strmid(dest, source, 0, 5);
print(dest);
}
Perhaps you're using it wrong.