Wait Command by EddieB29th Sep 2004 13:06
|
---|
Summary wait for your writing in differant seconds Description very good for loading a game Code ` This code was downloaded from The Game Creators ` It is reproduced here with full permission ` http://www.thegamecreators.com print "press space to start" do if spacekey()=1 then goto start loop start: print "Hello" wait 2000 print "bye" wait 2000 |