set display mode 800,600,16
load image "b1.png", 1
paste image 1, 0, 0
load image "sqa.bmp", 2
set text size 30
sync
SET TEXT FONT "Arial",0
ink rgb(255,255,255),0
Start:
Center Text 380,150,"Welcome to Blue Sqauae"
set cursor 210,250;
set text size 25
sync
Center Text 380,350, "spacebar to continue"
wait 500
suspend for key
paste image 1, 0, 0
set cursor 10,10
print "Score:";score;" "
score = 100
rem Varible
Square = 10
paste image 2, 380, 150
do
if mouseclick()=1
inc square
endif
loop
I'm trying to make a game where the user has to click the square in 5 seconds and then it will move places. But i am stuck as i do not know how to make a clickable image so it can give 10 points or how to move the image around using rnd?