
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
Graphics 640,480,0 Global arot:Int SetMaskColor 0,0,0 SetColor(255,255,255) SetRotation( rot ) While Not KeyDown(Key_Escape) 	If KeyDown( Key_Up ) Then rot = rot + 1 	If KeyDown( Key_Down ) Then rot = rot - 1 	Global ak47=LoadImage( "ak2.bmp" ) 	MidHandleImage( ak47 ) 	Flip Wend
It is meant to display a ak47 skin i drew up called ak2.bmp, it is in the same folder as the source file. But all i get is a black 640 by 480 screen. Im seriously confused.