Still trying to get a decent score. Not easy! But enjoying trying..
I have one suggestion, a little fix to prevent the cloud image from resetting after 1000 pixels, to make it scroll seamlessly. Here's what I did here...
The sky image is 2048 pixels wide, so I did another _PUTIMAGE after the first one, connecting them....
_PUTIMAGE (skyScroll, 0), skyImage
_PUTIMAGE (skyScroll + 2048, 0), skyImage
Then I changed the 1000 skyScroll number to 2048 ...
skyScroll = skyScroll - 2
IF skyScroll < -2048 THEN
skyScroll = 0
END IF
- Dav