Reply to Re: Maybe if you type real slow I will understand
If you don't have an account, just leave the password field blank.
I can hit the sigh and get "big man hits sign" "Shut up, you stupid sign."
But I can't read it, no matter how often I hit space bar, I get "Huh?" "I don't see anything here." But I can't read the sign.
This is because say can be used at all times to let a sprite say something. But in case you want say_stop and have spacebar to skip text, you'll need to freeze Dink. Otherwise you'll indeed getting him saying stuff like "Huh?" and the like. So:
void talk(void)
{
freeze(1)
say_stop("A", 1);
wait(250);
say_stop("B", 1);
wait(250);
say_stop("C", 1);
unfreeze(1)
}
will work like you want it, including the spacebar.
But I can't read it, no matter how often I hit space bar, I get "Huh?" "I don't see anything here." But I can't read the sign.
This is because say can be used at all times to let a sprite say something. But in case you want say_stop and have spacebar to skip text, you'll need to freeze Dink. Otherwise you'll indeed getting him saying stuff like "Huh?" and the like. So:
void talk(void)
{
freeze(1)
say_stop("A", 1);
wait(250);
say_stop("B", 1);
wait(250);
say_stop("C", 1);
unfreeze(1)
}
will work like you want it, including the spacebar.