hello, I wanted to have my sprites dissapear when I hit a key, then have the print command say "HI" but it isnt working for some reason...
set sprite 1000,1,0
backdrop off
hide mouse
rem Set the diplay to 800x600 with 32 bit color-depth
set display mode 800,600,32
set image colorkey 255,255,255
rem load images
load image "u.bmp",1
load image "n.bmp",2
load image "d.bmp",3
load image "i.bmp",4
load image "m.bmp",5
load image "icon6.bmp",6
load image "darkM3.bmp",7
load image "darkM4.bmp",8
rem
sprite 1,200,200,1
sprite 2,300,200,2
sprite 3,400,200,3
sprite 4,500,200,4
sprite 5,550,200,5
rem
wait key
cls
print "hi"