home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
RBBS in a Box Volume 1 #2
/
RBBS_vol1_no2.iso
/
001z
/
rbbs.scr
< prev
next >
Wrap
Text File
|
1989-03-01
|
857b
|
33 lines
;
; This Script can be customized easily for RBBS Auto Logons
;
; Replace FIRSTNAME with your real first name.
; Replace LASTNAME with your real last name.
; Replace PASSWORD with you normal password.
;
Note Logging onto an RBBS
Timeout 30 Halt ; Waitfor limit to 30, error goto Halt
Waitfor 'More (Y)' ; Wait for the string
Send 'N^M' ; Send N ^M = <CR>
Waitfor 'Name'
Send 'FIRSTNAME;LASTNAME;PASSWORD^M'
Timeout 30 Continue ; If the Board remembers us, skip
Waitfor 'More (Y)' ; the next Waitfor...
Send 'N^M' ; Goto Continue
Continue:
Note You are now logged on!
Exit
Halt:
Note Unuccessful Attempt.
Note Script Halted
Return