home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / vrac / icom201b.zip / INET-ON.SCR < prev    next >
Text File  |  1994-06-06  |  2KB  |  52 lines

  1. ;----------------------------------------------------------------------------
  2. ; INET-ON.SCR  Intellicomm v2 logon script for iNet 2000.
  3. ;
  4. ; Before using this script you must replace the information in the variables
  5. ; below with your proper iNet logon iformation:
  6. ;----------------------------------------------------------------------------
  7.  
  8. variable UserID   "Your.ID"   ;<-- Enter your ID here
  9. variable Password "Password"  ;<-- Enter your password here
  10. variable Speed    ".."        ;<-- .. = 2400 baud, ... = 1200 baud
  11.  
  12. ;----------------------------------------------------------------------------
  13. ; You must then set up Intellicomm (and your BIFs) for use with iNet.
  14. ; The procedure is quite simple and is outlined in "LONG DISTANCE SERVICES"
  15. ; in the online help (see the Help Index).
  16. ;
  17. ; Nothing below this point should need changing.
  18. ;=============================================================================
  19.  
  20. send Speed
  21.  
  22. waitfor "DATAPAC" 30 ERROR
  23.  
  24. delay 10
  25. send *[G]city                 ;send iNet address, as defined in the BIF
  26.  
  27. waitfor "Code d'usager:" 30 ERROR
  28. delay 10
  29. send UserID
  30.  
  31. waitfor "de securite:" 30 ERROR
  32. delay 10
  33. send Password
  34.  
  35. waitfor "press <CR>" 30 ERROR
  36. delay 10
  37. send *[G]phn1                 ;phn1 (phone number 1) of the BIF should be
  38.                               ;set up with the iNet address of the BBS (e.g.
  39.                               ;A CRS GA)
  40.  
  41. when
  42. when "your security" ERROR    ;password change... abort
  43. when "Unable to log" ERROR    ;can't logon to host
  44. when "did not accept" ERROR   
  45. waitfor "uter completed" 60 ERROR
  46.  
  47. exit     ;exit the script without an errorcode... signal all's well
  48.  
  49. ERROR:
  50.  hangup
  51.  exit 1  ;1 signals a problem... don't logon now
  52.