home *** CD-ROM | disk | FTP | other *** search
/ Games Tips & Tricks / GAMESTIPSUNDTRICKS.mdf / utility / magic2 / mtgtxt.bat < prev    next >
DOS Batch File  |  1995-11-18  |  921b  |  45 lines

  1. @echo off
  2.  
  3. :This will create the *.TXT files
  4. :Just add or change the name as you need to to fit your data sets
  5. print revised
  6. print legends
  7. print thedark
  8.  
  9. cls
  10. echo.
  11. echo Magic Text Files Created.
  12. echo.
  13. count revised
  14. echo.
  15. count legends
  16. echo.
  17. count thedark
  18. echo.
  19. choice /c:psn Send to Printer, Screen, or None
  20.  
  21. if errorlevel 3 goto done
  22. if errorlevel 2 goto look
  23. echo                              Revised Card Set>prn
  24. type revised.txt>prn
  25. echo Eject Page and then
  26. pause
  27. echo                              Legends Card Set>prn
  28. type legends.txt>prn
  29. echo Eject page and then
  30. pause
  31. echo                              The Dark Card Set>prn                             
  32. goto done
  33.  
  34. :note that l is the name of my file viewer.
  35. :you can change the filename to your viewer or
  36. :modify the lines to read     type revised.txt|more   etc
  37. :look
  38.  
  39. l revised.txt
  40. l legends.txt
  41. l thedark.txt
  42.  
  43. :done
  44.  
  45.