I need help in using this code
CLS
HIDE MOUSE
`CODE FOR CREATING NICE COLOURED BOXES 60 by 60 pixels
`
FOR W=0 TO 6
FOR I=0 TO 9
INK RGB(50+W*50,50+I*50,50),0
BOX 0+60*I,0+W*60,60+60*I,60+W*60
NEXT I
NEXT W
`PRINT THE IMAGE NUMBERS
FOR W=0 TO 6
FOR I=0 TO 9
INK RGB(255,255,255),0
SET CURSOR I*60,W*60
PRINT 1+I+10*W
NEXT I
NEXT W
`CODE FOR GETTING IMAGES FROM THE BOXES
FOR W=0 TO 6
FOR I=0 TO 9
GET IMAGE 1+I+10*W,0+60*I,0+W*60,60+60*I,60+W*60
NEXT I
NEXT W
SUSPEND FOR KEY
When i went to school a long time ago we would use this code to make sprites first we would use print screen after excuting it than save it as a bit map than we would get a sprite sheet and save it on the bit map and then in dark basic we would type
FOR W=0 TO 6
FOR I=0 TO 9
GET IMAGE 1+I+10*W,0+60*I,0+W*60,60+60*I,60+W*60
NEXT I
NEXT W
to get the sprite this is the part i'm stuck i've forgotten how to load the sprite please help me what should I type?
[edit] also I think i'm souppose to load the bit map the sprite is on i'm i right?
e.g.
cls
sync on
hide mouse
load bitmap "whatever.bmp" ,0
FOR W=0 TO 6
FOR I=0 TO 9
GET IMAGE 1+I+10*W,0+60*I,0+W*60,60+60*I,60+W*60
NEXT I
NEXT W