Ok pretty simple
1).You can use the left mouse button to draw a dot
2).You can use the right mouse button to change colors the text show the color you are currently using.
3).Hold spacebar to erase.
4).Hold 1 to make a small circle.
5).Hold 2 to make a bigger circle.
6).Hold 3 to make a line.
7).Hold 4 to make a bigger line.
8).If you hold 1 to 4 and the right mouse button it will make random colors of circle, line.
9).Press 9 to save the on screen image to a file in the c drive
C:image.bmp is where your masterpeice is stored. It's for dbp dunno if it will work on classic, and needs to be run at 1024 x 768 windowed or fullscreen.
sync on : sync rate 0 : randomize timer()
make file "c:\image.bmp" : create bitmap 1,1024,768
set current bitmap 0
do
if mouseclick() = 1 then circle mousex(),mousey(),.5
if mouseclick() = 2 then ink RGB(rnd(225),rnd(225),rnd(225)),RGB(0,0,0)
if spacekey() = 1 then circle mousex(),mousey(),2 : ink RGB(0,0,0),RGB(0,0,0)
if scancode() = 2 then circle mousex(),mousey(),2
if scancode() = 3 then circle mousex(), mousey(),4
if scancode() = 4 then line mousex(), mousey(), mousex()+10,mousey()+10
if scancode() = 5 then line mousex(), mousey(), mousex() + 20, mousey() + 20
set cursor 0,0 : set text font "arial" : set text size 15
print "Use left mouse to draw, right mouse to change color, 1 to make circle 2 bigger circle, spacekey with left mouse to erase add 1 or 2 for bigger erase"
print "Hold 3 or 4 for lines, and hold right mouse with 1 or 2 for rainbow circles, right mouse with 3 or 4 for rinbow lines press 9 to save the image to c:\image.bmp."
if scancode() = 10
get image 1,0,0,1024,768 : save image "c:\image.bmp",1
exit
endif
sync
loop