The Dink Network

Reply to Re: doh!

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:
 
 
June 6th 2003, 07:49 AM
pillbug.gif
void talk(void)
{
if(&stick==1)
{
say_stop("This stick will work, two more",1);
&stick += 1;

if(&stick==2)
{
say_stop("Ok, one more should do it!",1);
&stick=+1;

if(&stick==3)
{
say_stop("Now I'll try to start a fire in my house.",1);
&stick+=1;
Kill_this_task();
}
}
}
}

\\these two in unison should work, you can't \\talk to the sticks!

VOID MAIN(VOID)
{
playmidi("1.mid");
int &mom = create_sprite(208, 164, 16, 353, 1);
sp_base_walk(&mom, 350);
sp_speed(&mom, 1);

freeze(&mom);
freeze(1);

move_stop(1, 9, 195, 1);
sp_dir(1,9);
sp_kill(&mom,51000);

say("Hi mom!",1);
wait(4000);
say("`6Not now, I'm busy looking at Dink's masterpiece!!",&mom);
wait(4000);
say("`6Who the heck are you?",&mom);
wait(4000);
say("Mom.. I'm Blink, your son!?",1);
wait(4000);
say("`6Oh yeah, you",&mom);
wait(4000);
say("`6BUT DINK PAINTED THE WALL, WHITE!!",&mom);
wait(4000);
say("Mom, what about me?",1);
wait(4000);
say("Dink is all you talk about!",1);
wait(4000);
say("`6What did you ever do, Blink?",&mom);
wait(4000);
say("Well, today, I was voted best in the science fai...",1);
wait(4000);
say("`6That's great, I need to look at Dink's paintings now!",&mom);
waiT(4000);
say("Well... bye mom! I love you!",1);
wait(4000);
move_stop(&mom, 2, 280, 1);
sp_dir(&mom, 8);
say("`6Whatever",&mom);
wait(4200);
say("I'll do something to make you notice me mom.",1);
wait(4000);
say("For starters, I'll bring in some firewood!",1);
unfreeze(1);
&stick=1;
stopmidi("1.mid");
kill_this_task():
}