Page 1 of 1

I need serious help

Posted: Fri Jan 07, 2005 2:52 pm
by UnmarkedGrave
Hello all! :D I have 1 question that was bothering me for a long time.How do i make this:1)If is elasped 1minute,then print "wow,it is 1minute long program".
2)How do i make when my caracter(rpg)comes in some position on screen,and then qbasic prints text.
Thnx.

Posted: Fri Jan 07, 2005 4:21 pm
by Z!re

Code: Select all

sleep 60
print "wow [...]"
Or:

Code: Select all

t! = timer+60
do
if timer=> t! then print "wow [...]": t! = timer + 60
loop while inkey$ = ""
And:

Code: Select all

if PlayerLocation = PositionOnScreen then print "text"