TGC Codebase Backup



screensaver by the nutty proffesor

15th Jun 2005 12:32
Summary

starts randomly pasting wazzup all over your screen it is not finished yet so bear with me



Description

If you actually want to make this into a screensaver then save it as a .scr file. I think it is kinda cool



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    do
for i = 1 to 100
randomize timer()
hide mouse
a$ = "wazzup"
set text to bold
set text size rnd(40)
text rnd(640), rnd(480), a$
wait rnd(500)
set text to italic
set text size rnd(40)
text rnd(640), rnd(480), a$
wait rnd(500)
set text to normal
set text size rnd(40)
text rnd(640), rnd(480), a$
wait rnd(500)
next i
cls
loop