The Dink Network

Funny

June 3rd 2004, 08:19 AM
spike.gif
int &wtime = 10;
wloop:
say_stop(".....", 1);
&wtime -= 1;
wait(100);
if (&wtime < 1)
goto cont;
goto wloop;
cont:

Oh how smart doing that was. It saved me so many lines and all.
June 3rd 2004, 07:41 PM
pq_frog.gif
Ric
Peasant They/Them Canada
 
That's thinking ahead. Wait until you can use a variable string in "". Then you will also be able to change the text as you go (Strings will be in Windemere.)
Imagine this. say_stop("$name, I need $item",1);
while the strings 'name' and 'item' can be changed depending on who Dink is talking to or whatever.