The Dink Network

Reply to TPA Script problem

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 26th 2009, 09:32 AM
goblinh.gif
mkbul
Peasant He/Him Greece
TPA~ 
This is the script:


// Beginning cutscene from The Papyrus Adventures (1st scene of 4)

void main(void)

{

freeze(1);

int &mom = create_sprite(176, 222, 16, 221, 1);
preload_seq(221);

int &dad = create_sprite(429, 154, 16, 411, 1);
sp_base_walk(&dad, 411);
sp_base_idle(&dad, 411);
sp_speed(&dad, 1);
preload_seq(411);
freeze(&dad);

wait(100);
say_stop("`3Dear, Did you got ready Vink's things?", &dad);
wait(100);
say_stop("`4Yes, i still cannot belive it, my son finnaly grew up!", &mom);
wait(200);
say_stop("I heart that!", 1);
wait(100);
say_stop("`4Are you sure you dont wanna eat before you go?", &mom);
wait(100);
say_stop("No mum, we will go by boat, remember?", 1);
wait(100);
say_stop("`3Irene, he is ready, i know him, he is hero like his father!", &dad);
wait(200);
say_stop("`4Dink, you're such a crank!", &mom);
wait(500);
say_stop("Ok, i'm leaving now!", 1);
wait(100);
move_stop("1, 2, 223, 1");
say_stop("`4Hey, you will leave without a kiss?", &mom);
sp_dir(1, 6);
sp_dir(&mom, 4);
wait(100);
say_stop("Uh...right. *kisses*", 1);
wait(200);
say_stop("`3Pff...womens", &dad);
unfreeze(&dad);
wait(100);
say_stop("Ok, im leaving now, see ya!!", 1);
move_stop(1, 4, 314, 1);
wait(50);
move_stop(1, 2, 338, 1);
}


When the script runs, everything is ok, until the first move_stop command. When the command comes, the game freezes and you cant do nothing! Any help?