home *** CD-ROM | disk | FTP | other *** search
- ; RBcomm macro file for logging on to the Dr. Dobb's Journal BBS
- ; by Ralf Brown
- ;
- Auto MULTI
- PAUSE 4
- TEXT "\r"
- WAITFOR 12 "login:"
- TEXT "listings\r"
- WAITFOR 12 "name"
- TEXT "your_name\r"
- WAITFOR 5 "rd:"
- PASSWORD
- TEXT "\r"
- WAITFOR 12 "help"
- TEXT "1\r"
- END
-
- ; log the entire session to disk
- OnLoad OPEN_LOG "d:/tmp/ddj.log"
-
- ; but turn off the logging when we hang up
- Cleanup CLOSE_LOG
-
- ; include the standard key bindings
- #include "rbcomm"
-