18.01.2013, 13:56
Try this:
pawn Код:
stock CompareStringForTextdraw(text[])
{
new
strpos,
invalidstr[3][2] = { "[", "]", "*" }
;
for (new x=0; x<sizeof(invalidstr); x++)
{
strpos = strfind(text, invalidstr[x], true);
if(strpos != -1)
{
strdel(text, strpos, strpos+1);
}
}
return text;
}