get image just grabs a part of the screen and saves it in an image slot.
FOR y=0 to 1
FOR x=0 TO 6
rem IMAGE NUMBER, A B C D
GET IMAGE 1+x+(y*7),(x*89),(y*120),(x*89)+89,(y*120)+120
NEXT x
NEXT y
get image grabs a part of the screen, you can specify which part by adjusting the A B C D values:
A = X start
B = Y start
C = X end
D = Y end
on the screen it will grab:
-----B------
| |
| |
A C
| |
| |
-----D------
FOR y=0 to 1
FOR x=0 TO 6
GET IMAGE 1+x+(y*7),(x*89),(y*120),(x*89)+89,(y*120)+120
NEXT x
NEXT y
the image number is 1+x+(y*7)
this will make sure every part is saved in a different slot:
starting at 1:
y = 0 , x = 0, image number = 1+0+(0*7)
ends at 14:
y = 1 , x = 6, image number = 1+6(1*7)
I cannot tell which part of the screen gets captured, because you didnt post an image or screenshot. But I can tell you, the image he grabs is 89 pixels width and 120 pixels heigh.