Reply to Re: another moving problem
If you don't have an account, just leave the password field blank.
Okay, this should be pretty easy. Get rid of int &crap = sp(5);, as it is completely unnecessary (and generally a pretty bad way to do things).
Change
move_stop(&crap, 4, 85, 1);
move_stop(&crap, 8, 45, 1);
to
move_stop(¤t_sprite, 4, 85, 1);
move_stop(¤t_sprite, 8, 45, 1);
Change
move_stop(&crap, 4, 85, 1);
move_stop(&crap, 8, 45, 1);
to
move_stop(¤t_sprite, 4, 85, 1);
move_stop(¤t_sprite, 8, 45, 1);