TGC Codebase Backup



Flashing Text Square by MaPo

30th Nov 2008 14:27
Summary

Flashing Text Square -- just playing around with a flashing square without graphics.



Description



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    SET DISPLAY MODE 640,480,32
SET TEXT FONT "terminal",1
SET TEXT SIZE 12
RANDOMIZE TIMER()
DO
    CLS
    FOR i=1 to 500
        INK RGB(RND(255),RND(255),RND(255)),0
        TEXT 40+RND(20),40+RND(20),"*"
    NEXT i    
LOOP