can any body help me i am trying to make a game with some friends and i cant figure out how to place the ship into the program if any body can help me with it this is the code its an example of a thing i got off of dark basic im just seeing how to do it heres the code
sync on
ink rgb(244,214,210),1
load bitmap \"c:\\ship.bmp\"
get image 1,0,0,32,32
set camera range 1,5500
make matrix 1,6000,6000,25,25
position matrix 1,-3000,0,-3000
make object sphere 1,5000
set object 1,1,0,0
position camera 0,100,0
do
position mouse 320,240
cx#=wrapvalue(cx#+mousemovey())
cy#=wrapvalue(cy#+mousemovex())
cz#=wrapvalue(cz#+mousemovez())
rotate camera cx#,cy#,cz#
if upkey()=1 then move camera 25
if downkey()=1 then move camera -25
sync
loop
crzy programer