The Dink Network

Reply to Re: Echo effect

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
March 21st 2010, 09:42 AM
wizardb.gif
Kyle
Peasant He/Him Belgium
 
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:

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.