Reply to Re: loading screen
If you don't have an account, just leave the password field blank.
create_sprite has 5 arguments
&dinklogo = create_sprite(int x, int y, int brain, int seq, int frame);
You should find out the sequence and frame numbers and fill them in in the syntax. Then determine the correct x and y values and fill them in. Brain should be left 0.
Say you want a picture of seq 920, frame 1, on place x = 120 and y = 56, you should add this:
&dinklogo = create_sprite(120, 56, 0, 920, 1);
&dinklogo = create_sprite(int x, int y, int brain, int seq, int frame);
You should find out the sequence and frame numbers and fill them in in the syntax. Then determine the correct x and y values and fill them in. Brain should be left 0.
Say you want a picture of seq 920, frame 1, on place x = 120 and y = 56, you should add this:
&dinklogo = create_sprite(120, 56, 0, 920, 1);