Reply to Re: Dink Smallwood and the City of the Dead
If you don't have an account, just leave the password field blank.
Add draw_screen(); after load_screen();
As for your previous guestion, I'm not sure about what you're trying to do. Is he supposed to kill Dink or follow him around? sp_follow(); stops the character a bit before he touches Dink, so that's propably the problem. If you remove sp_follow(); and change his brain to 9, he will attack Dink normally. If you take away sp_attack(); he will mop on him. If you do that and give him a sp_touch_damage(¤t_sprite,-1); you can do something special with him in void touch();
void touch()
{
sp_touch_damage(¤t_sprite,0);
say("`1I touch you lulz",¤t_sprite);
wait(100);
sp_touch_damage(¤t_sprite,-1);
}
As for your previous guestion, I'm not sure about what you're trying to do. Is he supposed to kill Dink or follow him around? sp_follow(); stops the character a bit before he touches Dink, so that's propably the problem. If you remove sp_follow(); and change his brain to 9, he will attack Dink normally. If you take away sp_attack(); he will mop on him. If you do that and give him a sp_touch_damage(¤t_sprite,-1); you can do something special with him in void touch();
void touch()
{
sp_touch_damage(¤t_sprite,0);
say("`1I touch you lulz",¤t_sprite);
wait(100);
sp_touch_damage(¤t_sprite,-1);
}








