home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / telix / telicex.zip / PCPX24.SLT < prev    next >
Text File  |  1988-09-12  |  328b  |  24 lines

  1. //
  2. //Script to log on to Telenet's local access number and call ICEX203
  3. //
  4.  
  5. str T_ID[] = "D1";
  6. str cr[] = "^M";
  7.  
  8. main()
  9. {
  10.  alarm(2);
  11.  {
  12.  cputs_tr("@~D~^M~~");
  13.  
  14.  }
  15.    cputs(T_ID);
  16.    cputs("^M");
  17.  if (not waitfor("@", 20))
  18.   {
  19.    prints("Log-on failed!");
  20.    return;
  21.   }
  22.  run("c:\telix\icex203","-d",0);
  23. }
  24.