Reply to Re: Echo effect
If you don't have an account, just leave the password field blank.
Sure, it's a simple say_xy() in a script with a loop where you change the x and y value every cycle. Or did you have something else in mind? It could work like:
This would show the line of text 5 times with slightly displaced coordinates. You could add in a small wait if you wanted to add that delay effect.
EDIT: interesting thing to note is that this forum's code snippet can not contain the word & times (without the space) or it will place an "x" instead.
int &x = 100; int &y = 200; int &count = 5; loop: say_xy("This should echooooo", &x, &y); &x += 20; &y += 20; &count -= 1; if (&count > 0) goto loop;
This would show the line of text 5 times with slightly displaced coordinates. You could add in a small wait if you wanted to add that delay effect.
EDIT: interesting thing to note is that this forum's code snippet can not contain the word & times (without the space) or it will place an "x" instead.