I'm trying to make a script that takes a input, and replaces certain characters, and then returns the finished string. This involves more than 1 strreplace, but it's not seeming to work more than once. I've tried using separate functions, using different variable names, but it only seems to replace once.
Here's the code:
function NN(%Input)
{
strreplace(%Input, ".", " ");
strreplace(%input, "e", " ");
}
How do i fix this?
Replies appreciated!