TGC Codebase Backup



Moving hello by crazy man

11th Dec 2006 12:51
Summary

I made a code that cane make "hello" move around the sreen.



Description

The code in not hard at all it was just my first one. I made a code that can make "hello" move around the screen.



Code
                                    ` This code was downloaded from The Game Creators
                                    ` It is reproduced here with full permission
                                    ` http://www.thegamecreators.com
                                    
                                    Rem * Title  : hello
Rem * Author : Matthew Brown
Rem * Date   : 12-1-06
x = 0
y = 0
do
ink rgb(rnd(255),rnd(255),rnd(255)),0
text x,y, "hello"
x = x + 1
y = y + 1
if x = 640 then x = 0 : y = y + 7
if y = 480 then y = 0
cls
loop