home *** CD-ROM | disk | FTP | other *** search
- /*//////////////////////////////////////////////////////
- // AUTORESPONSE
- ////////////////////////////////////////////////////////
- //
- //
- // with the REPLY function you may setup automatic
- // responses for incoming data. These responses are
- // checked within a DELAY or WAIT command.
-
- // There is a limitation of 16 responses, each having
- // 80 characters max.
-
- // This is a example of how to login to a bbs and skip
- // across the initial news (assumed that they have
- // a "- press enter to continue -" prompt)
- // However, this is not the typical way to do a login;
- // this is merely a sample to show the use of REPLY
- */
-
-
- /* Setup a few replies */
- 'REPLY "Name" "ZOC^M"'
- 'REPLY "Password" "SECRET^M"'
- 'REPLY " continue -" "^M"'
-
- /* Dial in (no error busy etc. checking) */
- 'DIAL "555-555-7777"'
-
- /* wait until logout and leave the work to the responses */
- 'TIMEOUT 3600'
- 'WAIT "NO CARRIER"'
-