home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1998 February / PCOnline_02_1998.iso / filesbbs / frei / bimodem.arj / BIMOD.SLT < prev    next >
Text File  |  1989-01-18  |  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",0);     // change to dos("BiModem /L 2"),0); for com2 support
  27.  clear_scr();
  28.  dos("del BiModem.Pth");
  29. }
  30.