home *** CD-ROM | disk | FTP | other *** search
- .LINKED SCRIPT FOR COMPUSERVE INFORMATION SERVICE (CIS)
- .VIA COMPUSERVE'S OWN NETWORK;
- .LINK IT TO YOUR QMODEM PHONE DIRECTORY ENTRY FOR ANY CIS PHONE NUMBER(S).
-
- .NOTE: This script assumes that you have set your terminal options
- .on CIS (see CIS main menu) at 8 bits, no parity, 1 stop bit. If not,
- .this script may NOT work for you! Your QMODEM settings should be the same.
- .Exception: 2400 baud seems to need 7 bits, even parity, 1 stop bit.
- .ALSO: Be sure to use XMODEM RELAXED protocol if you download CIS files!
-
- .USE YOUR WORD PROCESSOR TO EDIT THIS FILE TO INCLUDE
- . [1] Your CIS account#
- . [2] Your CIS password
- . [3] Any CIS command(s)
-
- .COMMENTS ARE PREDEDED BY A PERIOD & REFER TO THE NEXT COMMAND LINE
-
- .Display message on-screen only
- NOTE ** LOGON TO COMPUSERVE **
-
- .The next line says to WAITFOR 60 seconds before halting script
- TIMEOUT 60
-
- .Set key parameters for CIS
- TURNOFF ECHO LINEFEED
-
- .Call CIS; phone number, bps, comm parameters depend on directory entry #.
- .For local #s, contact CIS at 800-848-8990 or 614-457-8650
-
- .Pause for 1 second, then send Ctrl-C to establish 'handshake' with CIS
- SEND "~~"
-
- .Wait for CIS to request your account#
- WAITFOR ":"
-
- .[1] Pause 1 second, then reply with your account#
- SEND "~~12345,1234{"
-
- .Wait for CIS to request your password
- WAITFOR "Password:"
-
- .[2] Pause 1 second, then reply with your CIS password
- SEND "~~FAKE-PASSWORD{"
-
- .Wait for CIS to Request your input
- WAITFOR "!"
-
- .[3] Pause for 1 second, then send any CIS command, such as:
- . GO PCS-131 (IBM PRO-SIG) or GO PCS-129 (IBM NOVICE SIG)
- SEND "~~GO PCS-131{"
-
- .Discontinue script processing; return control to keyboard
- RETURN
-