Reply to Re: doh!
If you don't have an account, just leave the password field blank.
Well, since dink doesn;t support while, for, ect loops, goto's are needed, but there is a easier way to write that script (and probably much better for editing. Here is my example.
void talk(void)
{
if (&stick == 3)
{
say_stop("Third text", 1);
&stick += 1;
editor_type(¤t_sprite, 1);
}
if (&stick == 2)
{
say_stop("Second text", 1);
&stick += 1;
editor_type(¤t_sprite, 1);
}
if (&stick == 1)
{
say_stop("First text", 1);
&stick += 1;
editor_type(¤t_sprite, 1);
}
}
void talk(void)
{
if (&stick == 3)
{
say_stop("Third text", 1);
&stick += 1;
editor_type(¤t_sprite, 1);
}
if (&stick == 2)
{
say_stop("Second text", 1);
&stick += 1;
editor_type(¤t_sprite, 1);
}
if (&stick == 1)
{
say_stop("First text", 1);
&stick += 1;
editor_type(¤t_sprite, 1);
}
}