home *** CD-ROM | disk | FTP | other *** search
/ Doom 2 Explosion / Doom2Explosion.bin / doom2exp / wads / ral3man / play.bat < prev    next >
DOS Batch File  |  1994-05-05  |  447b  |  30 lines

  1. @echo off
  2. :echo on
  3. echo:
  4.  
  5. if %1.==. goto err0
  6.  
  7. echo Command Line : "rePLAY Game" DOOM -PlayDemo %1 %2 %3 %4 %5 %6 %7
  8. echo:
  9.  
  10. if not exist %1.lmp goto err1
  11. if exist %1.lmp goto play
  12.  
  13. goto exit
  14.  
  15. :play
  16. doom -playdemo %1 %2 %3 %4 %5 %6 %7
  17. goto exit
  18.  
  19. :err0
  20. echo Error0 : "rePLAY Game" - No "%%1".LMP PlayDemo File Specified
  21. echo:
  22. goto exit
  23.  
  24. :err1
  25. echo Error1 : "rePLAY Game" - %1.LMP Specified does Not Exist
  26. echo:
  27.  
  28. :exit
  29.  
  30.