Reply to Re: doh!
If you don't have an account, just leave the password field blank.
Oh, assign this script to each stick on the ground:
void talk(void)
{
if (&stick == 1) goto ast;
if (&stick == 2) goto bst;
if (&stick == 3) goto cst;
AST:
say_stop("First text", 1);
goto end;
BST:
say_stop("Second text", 1);
goto end;
CST:
say_stop("Third text", 1);
end:
&stick += 1;
editor_type(¤t_sprite, 1);
}
void talk(void)
{
if (&stick == 1) goto ast;
if (&stick == 2) goto bst;
if (&stick == 3) goto cst;
AST:
say_stop("First text", 1);
goto end;
BST:
say_stop("Second text", 1);
goto end;
CST:
say_stop("Third text", 1);
end:
&stick += 1;
editor_type(¤t_sprite, 1);
}