The Dink Network

Reply to Punch sequence and sound

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:
 
 
August 26th 2011, 03:55 AM
duckdie.gif
Okay, so I'm trying to make Dink punch someone and the pun ch sound to come, but althought the rest of the script works, Dink neither puncheds nor the sound comes.
void main(void)
{
fade_down();
freeze(1);
sp_dir(1, 8);
wait(1000);
say_stop_xy("`%bla", 0, 200);
say_stop_xy("`%bla bla bla, bla bla", 0, 200);
fade_up();
say_stop("bla bla, bla bla bla, bla bla", 1);
wait(100);
say_stop("`5bla!", &current_sprite);
wait(50);
say_stop("bla bla!", 1);
sp_seq (1, 528);
playsound("punch.wav");
say_stop("`5bla", &current_sprite);
sp_seq(1, 528);
playsound("punch.wav);
&update_status = 1;
draw_status();
unfreeze(1);
}