Reply to Re: Yargh, bumwaffle!
If you don't have an account, just leave the password field blank.
Local variables only work inside the same script... simple fix is to do the following in the bonca script:
int &bonx = sp_x(¤t_sprite, -1);
if (&bonx == 270)
move_stop(¤t_sprite, 6, 370, 1);
if (&bonx == 370)
move_stop(¤t_sprite, 4, 270, 1);
btw, your script is quite unnecessarily complex.
int &bonx = sp_x(¤t_sprite, -1);
if (&bonx == 270)
move_stop(¤t_sprite, 6, 370, 1);
if (&bonx == 370)
move_stop(¤t_sprite, 4, 270, 1);
btw, your script is quite unnecessarily complex.
