off time Example
10 X=5
20 ON TIME (TIMEDATE+X) MOD 86400 GOTO Here !After 5 seconds, go to line 80.
30 PRINT "I'll wait";X;"seconds."
40 WAIT 2
50 OFF TIME
60 PRINT "OFF TIME worked properly."
70 STOP
80 Here: PRINT "Should never reach this point."
90 END