HELP!!!!
December 8th 2002, 04:04 PM

Kalagaraz


Im having problems starting on a certain map and the tut is not helping. It said to add sp_map(1, 1) (1 is my map) below sp_x in start-1.c. I did and all i start on is grass my rock and tree like on my map is not there. How do i fix this?
here is an example-
fade_down();
&player_map = 1;
sp_>
1, 340);
sp_y(1, 190);
load_screen(1);
sp_brain(1, 1);
fade_up();
draw_screen();
fade_down();
&player_map = 1;
sp_>

sp_y(1, 190);
load_screen(1);
sp_brain(1, 1);
fade_up();
draw_screen();
: here is an example-
: fade_down();
: &player_map = 1;
: sp_>
1, 340);
: sp_y(1, 190);
: load_screen(1);
: sp_brain(1, 1);
: fade_up();
: draw_screen();
Nah, that's for teleporting/warping someone. For start-1.c , just add:
&player_map = 1;
and x and y for Dink, with sp_x (); and sp_y();. Fade_up(); and fade_down(); are for warping, you don't need them to start the game (in start-1.c).
: fade_down();
: &player_map = 1;
: sp_>

: sp_y(1, 190);
: load_screen(1);
: sp_brain(1, 1);
: fade_up();
: draw_screen();
Nah, that's for teleporting/warping someone. For start-1.c , just add:
&player_map = 1;
and x and y for Dink, with sp_x (); and sp_y();. Fade_up(); and fade_down(); are for warping, you don't need them to start the game (in start-1.c).