home *** CD-ROM | disk | FTP | other *** search
- ; RBcomm macro file to log onto Quarterdeck BBS
- ; by Ralf Brown
- ;
- Auto MULTI
- PAUSE 2
- TEXT "\r"
- WAITFOR 10 "(Enter)=no?"
- TEXT "\r"
- WAITFOR 30 "first name?"
- TEXT "First\r"
- WAITFOR 5 "last name?"
- TEXT "Last\r"
- WAITFOR 5 "echo)?"
- PASSWORD
- TEXT "\r"
- WAITFOR 45 "Scan Message"
- TEXT "n\r"
- WHEN 2 "Press (Enter)"
- TEXT "\r"
- WAITFOR 20 "Command?"
- IF FAILED
- ABORT
- TEXT "j 1\r" ; (J)oin the tech support conference
- WAITFOR 30 "Conference Command?"
- TEXT "r\r"
- WAITFOR 10 "Read Command?" ; start reading the tech support
- TEXT "+\r" ; conference
- WHEN 1 "Message Command?" ; in non-stop mode
- TEXT "ns\r" ; (all text logged to file)
- END
-
- ; log entire session to disk
- OnLoad OPEN_LOG "D:/TMP/QDECK.LOG"
-
- Cleanup CLOSE_LOG
-
- ; add standard bindings
- #include "rbcomm"
-