Funny
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.
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.

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.

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.