home *** CD-ROM | disk | FTP | other *** search
- ; Contributed by Ken Goosens 26 April 1984.
- ;Modified by John Siefken for Fargo RBBS
- ; This script file is for automatically logging onto RBBS
- ; systems. It works for all versions 11.x and 12.x,
- ; including release 12.2.
- ;
- ; The only change you must make is to edit in your
- ; name and password. You also may have to edit the .XTK file
- ; to include a line such as "DO RBBSLOG" to call these files
- ; after the "GO Q30/30" at the end.
- ; The vertical bar | is Crosstalkeese for <enter>.
- wait delay 10
- when "CAN" jump start
- ; Send carriage returns until get prompt for linefeeds
- label top
- reply |
- wait delay 15
- jump top
- label start
- ; Yes- Want linefeeds with Crosstalk
- wait for "?"
- when -
- reply y|
- wait string "graphics?"
- wait delay 5
- reply n|
- wait string "NS?"
- wait delay 5
- reply NS|
- wait string "FIRST Name?"
- ; ==>> Put in your own NAME and PASSWORD in the form below
- reply firstname;lastname;password|
- when "Function" when - : wait for ">" : jump relarm
- ; Skip any bulletins if asked
- label bull
- wait for "end>?"
- wait delay 15
- reply |
- jump bull
- ; Alarm caller than you have logged in and host is ready for
- ; commands. Keep buzzing until user presses escape.
- label relarm
- when -
- when "NS?" reply NS|
- label realarm1
- alarm 1 now
- wait delay 40
- jump realarm1
- abort
-