home *** CD-ROM | disk | FTP | other *** search
/ norge.freeshell.org (192.94.73.8) / 192.94.73.8.tar / 192.94.73.8 / pub / computers / pcjr / comm / BIMOD107.LZH / BIMOD.SLT < prev    next >
Text File  |  1989-03-15  |  1KB  |  30 lines

  1. //  ________________________________________________________________________
  2. // |                                                                        |
  3. // | A Sample Script file for use with Telix 3.10                           |
  4. // |                                                                        |
  5. // | This script will execute BiPath so you may modify your transfer        |
  6. // | request lists, and then will Request BiModem from the Bulletin Board.  |
  7. // | If selection of BiModem is not done by typing a B and pressing the     |
  8. // | carriage return, you will have to either modify this script file or    |
  9. // | start BiModem on the board before executing this script.               |
  10. // |________________________________________________________________________|
  11. //
  12. //  Very simple yet it really helps.  now if you execute this script from
  13. //  Telix, it should do the trick.  Feel free to enhance this as there are
  14. //  many directions you could take.
  15. //
  16.  
  17. main()
  18.  
  19. {
  20.  dos("BiPath BiModem.Pth",0);
  21.  clear_scr();
  22.  box (0,0,79,2,1,0,30);
  23.  pstraxy(" Please enter the command which brings up BiModem on the BBS ",1,1,30);
  24.  pstraxy(" ",1,3,03);
  25.  while (!(waitfor("  ",100))) ;
  26.  dos("BiModem /R",0); // Some modems may require the removal of /R to ignore CTS
  27.  clear_scr();
  28.  dos("del BiModem.Pth");
  29. }
  30.