Time elapsed since the beginning of the adventure. Measured in seconds. Read-only.
Example
'Delay at least 15 seconds between messages.
DECLARE tStart
'Set start time.
tStart = ELAPSED_TIME
PRINT "Check heading."
WHILE ELAPSED_TIME < tStart + 15
WAIT 1
ENDWHILE
PRINT "Check heading."