The Dink Network

Reply to Re: Redang

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:
 
 
February 26th 2006, 03:49 PM
knightg.gif
cypry
Peasant He/Him Romania
Chop your own wood, and it will warm you twice. 
Ok. Problem solved:
1. Your script was named start-1.c.c.c That's way the game didn't called it.
2. I changed a few lines of it:
Here's the new one:

//start
void buttonon( void )
{
sp_pframe(&current_sprite, 2);
Playsound(20,22050,0,0,0);
}

void buttonoff( void )
{
sp_pframe(&current_sprite, 1);
Playsound(21,22050,0,0,0);
}

void click ( void )
{
Say_xy("`%Please wait. (Creating new game)", 0, 394);
wait(1);

//"turns game on"
set_mode(2);
reset_timer();
fill_screen(0);
//put dink in this room
&player_map = 374;
load_screen();

//make dink
sp_x(1, 180);
//&player_map=374;
sp_y(1, 250);
sp_base_walk(1, 70);
sp_base_attack(1, 100);
sp_dir(1, 8);
sp_brain(1, 1);
sp_que(1, 0);
sp_noclip(1, 0);

//dinks weapons
add_item("item-fst",438, 1);
&cur_weapon = 1;
arm_weapon();

//status bar
&update_status = 1;
draw_status();

kill_this_task();
}