So... I am making a Total War like game, and I coded many parts sucsesfully, but I got stuck at this part:
mapmoving:
sprite 1, backgroundx, backgroundy, 1
if mousex()<10 and backgroundx<1 then inc backgroundx
if mousex()>1270 and backgroundx>-1886 then dec backgroundx
if mousey()<10 and backgroundy<1 then inc backgroundy
if mousey()>710 and backgroundy>-1180 then dec backgroundy
return
color:
repeat
gosub mapmoving
Mx=mousex()
My=mousey()
paste image 2, backgroundx, backgroundy,
color=point(mx, my)
sprite 1, backgroundx, backgroundy,1
select color
case -8322945
sprite 30, mx, my, 30
endcase
endselect
until mouseclick()=0
return
I don't know how but this code works

, and I wanted to leave it alone, but then I started to work on the game user interface, and with this I need to make every text in an image. There is an easy way to do that (get image, from bitmaps) but i'm sure, that there is an easiest way, with using texts, simply.
The problem is to I can't use Draw Sprites First command, because there is an image, so, how can I avoid using an image?
(sorry for my bad composition)