29.11.2010, 14:40
If you use this code, it works.
pawn Код:
public OnFilterScriptInit()
{
new string[128];
format(string, sizeof(string), "This is only a test, so don't ask!");
printf("%s", string);
strreplace(string, "test", "foo");
print(string);
return 1;
}