
How about learn some of DBC's Commands?, Ill help anyway, As im feeling kind...
sync on : sync rate 60
`Load Spaceship (need to have an image in the same folder as game called "spaceship.bmp"
load image "spaceship.bmp",1,1
`Load Bullet (need to have an image in the same folder as game called "bullet.bmp"
load image "bullet.bmp",2,1
do
`Bullet
sprite 2,bulletx,bullety
`Left Movement
if leftkey()=1 then x=x-2
`Right Movement
if rightkey()=1 then x=x+2
`Shooting
if controlkey()=1 and shoot=0
show sprite 2
shoot=1
bulletx=x : bullety=y
endif
if shoot=1 then move=move+1 : bullety=bullety-3
if move=60 then shoot=0 : move=0 : hide sprite 2
`Update spaceship position
sprite 1,x,y,1
sync
loop
Thats of the top of my head (not tested)
Tell me if it doesnt work...