The Dink Network

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.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
July 13th 2004, 01:44 PM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
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.