I have tried posting the code I have so far, using the Code: block of the Post Forum Message, but with no luck.
So, here is the code, and I apologize for not using the Code Snippet style, as I haven't figured that out yet!
REM Project: Arcade Shooter
REM Created: 27/06/2005 12:06:18 PM
REM
REM ***** Main Source File *****
REM
REM Initial game variables
PlayerX=800
PlayerY=400
true=1
set display mode 1024,768,32
set image colorkey 255,255,255
load image "airplane.bmp",1
set sprite 1,1,1
while true
if leftkey()=1 then PlayerX=PlayerX-10
if rightkey()=1 then PlayerX=PlayerX+10
sprite 1,PlayerX,PlayerY,1
endwhile
It's better to try and fail, than to fail by not trying