14.03.2014, 13:57
Find a way to use this :
I think this may work, I hope it works, good luck
pawn Код:
for( new i = 0; i < len; i++)
{
if(str[i] == '0' || str[i] == '1' || str[i] == '2' || str[i] == '3' ... to 9 )
{
if( count >= 7 )
{
strdel(str, i,i);
strins(str, "x", i);
}
count++;
}
}