The Dink Network

Reply to 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:
 
 
June 16th 2005, 07:51 AM
fairy.gif
Glennglenn
Peasant He/Him Norway
GlennGlenn doesn't want a custom title. 
Dink starts on a screen, walks into his house, and then goes out again, but then the script starts again. I've tried with stories and such.

Here is the script
-
void main( void )
{


if (&story == 0)
{
freeze(1);
wait(100);
say_Stop("Finaly home from town. ", 1);
move_stop(1, 8, 190, 0);
fade_down();
script_attach(1000);
&player_map = 97;
sp_x(1, 320);
sp_y(1, 350);
load_screen();
draw_screen();
draw_status();
fade_up();
freeze(1);
&story = 1;
}


if (&story == 1)
{
freeze(1);
say_Stop("Looks like the mailman has been here. ", 1);
move_stop(1, 8, 255, 1);
move_stop(1, 4, 244, 0);
move_stop(1, 8, 133, 1);
say_stop_xy("`1You must come out to the woods.", 0, 20);
say_stop_xy("`1I will meet you there.", 0, 20);
say_stop_xy("`1Sincerely Gregor", 0, 20);
wait(500);
say_Stop("Who is Gregor?. ", 1);
move_stop(1, 2, 265, 1);
move_stop(1, 6, 315, 0);
move_stop(1, 2, 370, 1);
fade_down();
script_attach(1000);
&player_map = 129;
sp_x(1, 350);
sp_y(1, 202);
load_screen();
draw_screen();
draw_status();
fade_up();
freeze(1);
move_stop(1, 6, -5, 0);
move_stop(1, 6, 325, 0);
move_stop(1, 8, -5, 0);
}

}