Posted: 11th Nov 2002 10:13
Because of the copy bitmap 0 bug in DBP, this will only
work with DB.

+ Code Snippet
randomize timer()
sync on : sync rate 40
set display mode 800,600,16
set text font "times new roman"
set text size 18

repeat
ink 0,0 : box 0,20,799,34
for x=1 to 785 step 14
	g=rnd(255)
	ink rgb(0,g,0),0
   t=rnd(300)
	if t>200 then t=0
	text x,20,chr$(t)
	line x-1,20,x-1,34
next x
copy bitmap 0,0,20,799,585,0,0,34,799,599
ink rgb(255,255,255),0	
text 1,1,text$
sync
until text=1

end



ToXic
Posted: 11th Nov 2002 17:53
Ooooooo cool! If you change the sync to 0 there isnt the blank spot at the beginning and you may want to
Hide Mouse

Very cool!
Later
RPGgamer
Posted: 12th Nov 2002 1:42
cool