home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 September
/
Simtel20_Sept92.cdr
/
msdos
/
kermit
/
ker_scp3.arc
/
ROS.SCP
< prev
next >
Wrap
Text File
|
1988-09-10
|
3KB
|
91 lines
Comment ROS.SCP to log on to a ROS BBS
;v1.0, early 1988
;
;Fire up PC-Kermit, setting your baud rate, port, terminal emulation,
;etc. either thru the MSKERMIT.INI file or manually.
;Then, at the Kermit prompt, give Kermit the following command:
; Kermit-MS> take ros.scp
;Kermit will run the following script file.
;
;Tested with ROS BBS, Fayetteville NC, and should work with all other
;ROS BBS's. If not, read TOADSCRP.DOC for suggestions on how to build
;your own Kermit script file.
;
;This works fine with PC-Kermit v2.29 and up. It does NOT use the more
;powerful script language available with the latest (v2.31).
;(Haven't figured it all out yet!)
;David Kirschbaum
;Toad Hall
;kirsch@braggvax.ARPA
;
;Substitute the baud rate you want here:
SET BAUD 2400; set baud to 2400 for ROS
CLEAR; flush any junk at the port
SET TAKE OFF; don't display Take file commands as we go
SET INPUT TIMEOUT-ACTION QUIT; quit script if proper answers do not appear
OUTPUT \10; Send a CR to the modem to get a new line
OUTPUT AT\13; see if modem is alive
INPUT OK; look for its normal response
;Substitute the number of your ROS BBS here:
OUTPUT ATDP 864-0118\13; Tell the modem to dial the number
INPUT 25 CONNECT; wait for phone to be answered
PAUSE 1; wait 1 sec for modem to get ready
SET INPUT TIMEOUT PROCEED; ignore timeouts from here on
INPUT 30 FIRST NAME> ; Wait for ROS's first name prompt
pause 1
;The following line would work fine if keyed in manually:
;my first name, a semicolon, and my last name.
;
;OUTPUT DAVID\59KIRSCHBAUM\13; Send our first name, semicolon,last name
;
;Turns out ROS can't handle Kermit's text sending at full speed,
;so just outputting the above line won't work (ROS loses characters).
;To send our name slower, we'll send it one char at a time.
;Works fine now at 2400 baud.
;
;Enter your name here (with additional "output %" lines as required).
output D
output A
output V
output I
output D
output \13; CR to terminate first name input
INPUT 30 LAST NAME> ; Wait for ROS's last name prompt
;OUTPUT KIRSCHBAUM\13; Send our last name
pause 1
output K
output I
output R
output S
output C
output H
output B
output A
output U
output M
output \13; CR to terminate last name input
INPUT 30 Password> ; Wait for ROS's password prompt
pause 1
;Substitute your password here:
;OUTPUT password\13; Send our password
;Same problem with ROS losing characters if we use the above line,
;so we'll send our password one character at a time.
output p
output a
output s
output s
output w
output o
output r
output d
output \13; CR to terminate password
;ROS has various stuff that is displayed as part of the introduction.
;We'll let Kermit wait until all that junk is over and ROS sends the
;"Press any key to continue..." (or whatever).
INPUT 30 continue...; Wait for end of intro display
;
;Kermit will drop you back at its command line.
;Enter "c" to go into "connect" or terminal mode,
;and you can continue with your ROS session.
;(Expect some bulletins or whatever in a second or two.)