home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games Tips & Tricks
/
GAMESTIPSUNDTRICKS.mdf
/
utility
/
magic2
/
mtgtxt.bat
< prev
next >
Wrap
DOS Batch File
|
1995-11-18
|
921b
|
45 lines
@echo off
:This will create the *.TXT files
:Just add or change the name as you need to to fit your data sets
print revised
print legends
print thedark
cls
echo.
echo Magic Text Files Created.
echo.
count revised
echo.
count legends
echo.
count thedark
echo.
choice /c:psn Send to Printer, Screen, or None
if errorlevel 3 goto done
if errorlevel 2 goto look
echo Revised Card Set>prn
type revised.txt>prn
echo Eject Page and then
pause
echo Legends Card Set>prn
type legends.txt>prn
echo Eject page and then
pause
echo The Dark Card Set>prn
goto done
:note that l is the name of my file viewer.
:you can change the filename to your viewer or
:modify the lines to read type revised.txt|more etc
:look
l revised.txt
l legends.txt
l thedark.txt
:done