here is a very random shape drawer thingy... lol... have fun
i tryed making it shorter... but i got like... 24 lines... so yea... but i will give you the long one
here is the long version (((only 48 lines))):
ink rgb(rnd(255),rnd(255),rnd(255)),1
print \"Click the left button to erase and the right button to change objects.\"
line:
Do
ink rgb(rnd(255),rnd(255),rnd(255)),1
line 0,0,mousex(),mousey()
if mouseclick() = 1 then cls : print \"Click the left button to erase and the right button to change objects.\"
if mouseclick() = 2
cls
print \"Click the left button to erase and the right button to change objects.\"
gosub circle
endif
loop
circle:
Do
ink rgb(rnd(255),rnd(255),rnd(255)),1
circle mousex(),mousey(),20
if mouseclick() = 1 then cls : print \"Click the left button to erase and the right button to change objects.\"
if mouseclick() = 2
cls
print \"Click the left button to erase and the right button to change objects.\"
gosub dot
endif
loop
dot:
Do
ink rgb(rnd(255),rnd(255),rnd(255)),1
dot mousex(),mousey()
if mouseclick() = 1 then cls : print \"Click the left button to erase and the right button to change objects.\"
if mouseclick() = 2
cls
print \"Click the left button to erase and the right button to change objects.\"
gosub all
endif
loop
all:
Do
ink rgb(rnd(255),rnd(255),rnd(255)),1
line 0,0,mousex(),mousey()
circle mousex(),mousey(),20
dot mousex(),mousey()
if mouseclick() = 1 then cls : print \"Click the left button to erase and the right button to change objects.\"
if mouseclick() = 2
cls
print \"Click the left button to erase and the right button to change objects.\"
gosub line
endif
loop
Why do they turn against me? Especially when i need them the most?