I'm trying to set up my game so that if the player doesn't do anything at the title screen after a long enough period of time the game plays a short introduction of all the characters and the basic so-far-at-the-start-of-the-game plot, but the problem is I can't figure out how to go about doing that. Here's what I've got going so far -
OldTime=Timer()
repeat
NewTime=Timer()
if NewTime=OldTime+15000
Introduction()
endif
until spacekey()=1
The finished game will wait a bit longer than 15 seconds (closer to 45), but I'm sticking with 15 for the testing phase. Thanks in advance for help!