home *** CD-ROM | disk | FTP | other *** search
/ ftp.lith.com 2018 / ftp.lith.com.zip / ftp.lith.com / pub / monolith / blink.scp < prev    next >
Text File  |  1996-12-02  |  849b  |  44 lines

  1. ;
  2. ; This is a script file that demonstrates how
  3. ; to establish a PPP connection with a host
  4. ; that uses a menu system.
  5. ;
  6. ; A script file must have a 'main' procedure.
  7. ; All script execution starts with this 'main'
  8. ; procedure.
  9. ;
  10. ;
  11. ;  Login script for 1STOP On-Line Services using Windows 95 Dial-Up Networking
  12. ;
  13. proc main
  14.  
  15.    ; Delay for 3 seconds first to allow host time
  16.    ; to send initial characters.
  17.    delay 3
  18.    transmit "^M"
  19.  
  20.    ; Wait for the login prompt before entering user ID
  21.    waitfor "user): "
  22.    delay 2
  23.  
  24.    transmit "Spencer Maiers"
  25.    transmit "^M"
  26.  
  27.    ; Enter the password
  28.    waitfor "assword: "
  29. ;   delay 2
  30.    transmit "nude"
  31.    transmit "^M"
  32.  
  33.    ; select no ansi terminal program
  34.    waitfor "N)?"
  35. ;   delay 2
  36.    transmit "N"
  37.  
  38.    ; Choose PPP connection at main menu
  39.    waitfor "COMMAND:"
  40. ;    delay 1
  41.    transmit "P"
  42.  
  43. endproc
  44.