Reply to Re: Bah, humbug.
If you don't have an account, just leave the password field blank.
int &arrowposition = 1;
int &arrow = create_sprite(510, 350, 0, 192, 2);
Variable naming bug. It occurs when a variable starts with the name of another variable. In this case &arrowposition starts with &arrow.
Try renaming &arrow to something else. Even &arroww is allowed. As long as there isn't any other variable that starts with the new name.
int &arrow = create_sprite(510, 350, 0, 192, 2);
Variable naming bug. It occurs when a variable starts with the name of another variable. In this case &arrowposition starts with &arrow.
Try renaming &arrow to something else. Even &arroww is allowed. As long as there isn't any other variable that starts with the new name.