home *** CD-ROM | disk | FTP | other *** search
-
- PROC MAIN
-
- clear 30
- ATSAY 1 3 14 "Time to Execute Script: (HH:MM) "
- ATGET 1 36 15 5 S1
- ATSAY 3 8 14 "Name of Script to Execute: "
- ATGET 3 36 15 8 S2
- integer C1 = 1
- usermsg "Acknowledged"
- statmsg "Waiting till specified time to execute BBS call ... "
-
- if NULL S1
- usermsg " Dialing! "
- execute S2
- endif
-
- while not zero C1
- S3=$TIME1
- ATSAY 5 25 14 "Time Now: "
- ATSAY 5 36 15 S3
- strcmp S1 S3 5
- if success
- c1 = 0
- endif
- endwhile
-
- usermsg " POOF!!!! "
-
- execute S2
-
- ENDPROC
-
-