I need serious help

Discuss whatever you want here--both QB and non-QB related. Anything from the DEF INT command to the meaning of life!

Moderators: Pete, Mods

Post Reply
UnmarkedGrave

I need serious help

Post 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.
Z!re
Veteran
Posts: 887
Joined: Wed Aug 04, 2004 11:15 am

Post 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"
I have left this dump.
Post Reply