home *** CD-ROM | disk | FTP | other *** search
- goto DONE
-
- :MESSAGES
- output %msg
- call MORE
- return
-
- :PROMPT
- set count 5
-
- :PROMPT1
- input 12 %prompt
- if offline goto NOGO
- if success goto PROMPT2
- reinput %prompt
- if success goto PROMPT2
- output "\r"
- if count goto PROMPT1
- goto NOGO
-
- :PROMPT2
- return
-
- :MOREYES
- output "y\r"
- if offline goto NOGO
-
- :MORE
- set count 5
-
- :MORE1
- untilidle 2
- reinput "More"
- if success goto MOREYES
- reinput %prompt
- if success goto MOREDONE
- output "\r"
- if offline goto NOGO
- if count goto MORE1
- goto NOGO
-
- :MOREDONE
- return
-
- :DONE
- exit 0
-
- :NOGO
- exit 1
-