home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #2 / RBBS_vol1_no2.iso / 001g / fargolog.xts < prev    next >
Text File  |  1984-12-23  |  1KB  |  50 lines

  1. ; Contributed by Ken Goosens 26 April 1984.
  2. ;Modified by John Siefken for Fargo RBBS
  3. ; This script file is for automatically logging onto RBBS
  4. ; systems.  It works for all versions 11.x and 12.x,
  5. ; including release 12.2.
  6. ;
  7. ; The only change you must make is to edit in your
  8. ; name and password.  You also may have to edit the .XTK file
  9. ; to include a line such as "DO RBBSLOG" to call these files
  10. ; after the "GO Q30/30" at the end.
  11. ;   The vertical bar | is Crosstalkeese for <enter>.
  12. wait delay 10
  13. when "CAN" jump start
  14. ; Send carriage returns until get prompt for linefeeds
  15. label top
  16. reply |
  17. wait delay 15
  18. jump top
  19. label start
  20. ; Yes- Want linefeeds with Crosstalk
  21. wait for "?"
  22. when -
  23. reply y|
  24. wait string "graphics?"
  25. wait delay 5
  26. reply n|
  27. wait string "NS?"
  28. wait delay 5
  29. reply NS|
  30. wait string "FIRST Name?"
  31. ; ==>>  Put in your own NAME and PASSWORD in the form below
  32. reply firstname;lastname;password|
  33. when "Function" when - : wait for ">" : jump relarm
  34. ; Skip any bulletins if asked
  35. label bull
  36. wait for "end>?"
  37. wait delay 15
  38. reply |
  39. jump bull
  40. ; Alarm caller than you have logged in and host is ready for
  41. ; commands.  Keep buzzing until user presses escape.
  42. label relarm
  43. when -
  44. when "NS?" reply NS|
  45. label realarm1
  46. alarm 1 now
  47. wait delay 40
  48. jump realarm1
  49. abort
  50.