The Dink Network

Reply to What's wrong??!!

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:
 
 
December 24th 2009, 08:13 AM
knights.gif
pathfinder
Peasant He/Him China
I love hanging ON LINE without doing anything... 
//Bonca..medium strength

void main( void )
{
int &mcounter;
int &mtarget;
int &mcrap;
int &assault;
int &mlife;
sp_brain(&current_sprite, 9);
sp_speed(&current_sprite, 1);
sp_distance(&current_sprite, 50);
sp_timing(&current_sprite, 33);
sp_exp(&current_sprite, 30);
sp_base_walk(&current_sprite, 530);
sp_base_death(&current_sprite, 550);
sp_base_attack(&current_sprite, 540);
sp_defense(&current_sprite, 3);
sp_strength(&current_sprite, 8);
sp_touch_damage(&current_sprite, 4);
sp_hitpoints(&current_sprite, 20);
preload_seq(531);
preload_seq(533);
preload_seq(537);
preload_seq(539);
preload_seq(551);
preload_seq(553);
preload_seq(557);
preload_seq(559);

preload_seq(542);
preload_seq(544);
preload_seq(546);
preload_seq(548);
set_callback_random("assault", 10, 0);

void hit( void )
{
playsound(29, 22050,0,&current_sprite, 0);

sp_target(&current_sprite, &enemy_sprite);
&assault = 1;
sp_speed(&current_sprite,5);
//lock on to the guy who just hit us
//playsound

}

void die( void )
{
int &hold = sp_editor_num(&current_sprite);
if (&hold != 0)
editor_type(&hold, 6);

&save_x = sp_x(&current_sprite, -1);
&save_y = sp_y(&current_sprite, -1);
external("emake","medium");
}

void attack( void )
{
playsound(31, 22050,0,&current_sprite, 0);
&assault = 0;
sp_speed(&current_sprite,1);
&mcounter = random(4000,0);
sp_attack_wait(&current_sprite, &mcounter);
}

void assault(void)
{
if (&assault = 1)
{
&mtarget = sp_target(&current_sprite,-1);
if (&mtarget > 0)
{
say("<Quick raid>",&current_sprite);
sp_speed(&current_sprite,5);
&mcrap = random(7,1);
if (&mcrap < 4)
{
&life = sp_hitpoints(&current_sprite,-1);
&mlife -= 1;
sp_hitpoints(&current_sprite,&mlife);
}
return;
}
}
}

This guy won't attack!And something else is wrong...