16.08.2010, 17:31
Hi...
I wanted to do something like:
if you write "fuck" it writes **** instead
like:
but I don't know how to get the returns
( i thought return replaces the pos where the "fuck" starts)
I wanted to do something like:
if you write "fuck" it writes **** instead
like:
Code:
if(strfind(text, "fuck", true) != -1){
strdel(text, return, return+4);
strins(text, "****", return);
}

( i thought return replaces the pos where the "fuck" starts)


