home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff246.lzh / NComm / ExampleII.script < prev    next >
Text File  |  1989-09-14  |  543b  |  31 lines

  1. ;
  2. ; Script for reading new messages on Amiga BBS
  3. ;
  4.  
  5.     when "- More (Y)/N/NS? " send "NS\n"
  6.  
  7.     ;Log in
  8.     timeout 1 send "\n^P"
  9.     converse "First name: " "firstname;lastname\n"
  10.     timeout 0
  11.     converse "Password: " "\p\n"
  12.  
  13.     ;Turn on capture
  14.     wait "\n"
  15.     capture "ram:ABBS"
  16.  
  17.     ;Start reading messages...
  18.     when "(RE Quit)" send "\n"
  19.     converse  "(? for menu)" "\n"
  20.  
  21.     ;Scan for new files...
  22.     converse  "(? for menu)" "N\n"
  23.     converse  "(? for menu)" "*\n"
  24.  
  25.     ;Bye!
  26.     converse  "(? for menu)" "G;Y\n"
  27.  
  28.     wait "NO CARRIER"
  29.     capture off
  30.     message "\nEnd of script\n"
  31.