home *** CD-ROM | disk | FTP | other *** search
/ Instant Doom Levels / Instant.Doom.Levels.-.Level.Master.II.iso / WADS / DOOM1 / M_O / OTTAWAU.ZIP / OTTAWAU.BAT < prev    next >
DOS Batch File  |  1995-03-20  |  3KB  |  69 lines

  1. @echo off
  2. cls
  3. echo                ** OTTAWAU v0.9 (pre-release) **
  4. echo  
  5. echo     This is a modified PWAD file for DOOM v1.9, ID wil *NOT*
  6. echo support any modified games. For help on this PWAD, send e-mail
  7. echo to me at az589@freenet.carleton.ca (Jean-Serge Gagnon).
  8. echo  
  9. echo                                                       Enjoy!
  10. if exist back2org.bat goto done
  11. echo  
  12. echo     Don't forget that you can also view the new monsters, floors
  13. echo ceilings and sprites (like trees) by typing the command CHG2OU.
  14. echo This will patch your original DOOM.EXE and DOOM.WAD files to see
  15. echo these changes. Before you say you don't like that, it IS worth
  16. echo doing and besides, there is no danger for the original DOOM files
  17. echo as they will be backed-up and if there is any problem, you can just
  18. echo type BACK2ORG right after.
  19. :done
  20. if not exist doom.exe goto missing
  21. if not exist doom.wad goto missing
  22. if exist ottawau.wad goto ok
  23. :missing
  24. echo **************************************************************
  25. echo **************        !!!!!! ERROR !!!!!!        *************
  26. echo **************************************************************
  27. echo **    Oops! I can't find either the DOOM.EXE or DOOM.WAD!   **
  28. echo ** Please make sure you have them in the same directory     **
  29. echo ** as OTTAWAU.WAD!                                          **
  30. echo **************************************************************
  31. echo  
  32. goto end
  33. :ok
  34. if exist back2org.bat goto ok19
  35. dmcheck /q v 1.9
  36. echo  
  37. if not errorlevel == 255 goto noterr
  38. echo ****************************************************************************
  39. echo ***    You do not appear to have version 1.9 of DOOM or the files have   ***
  40. echo *** been modified. According to DMCHECK, you have:                       ***
  41. dmcheck w /m /u
  42. goto getkey
  43. :noterr
  44. if not errorlevel == 2 goto notshar
  45. echo ****************************************************************************
  46. echo ***    You only have the sharewear version of DOOM 1.9! You can't use    ***
  47. echo *** PWAD files with it. Please get the full registered version of DOOM.  ***
  48. echo ****************************************************************************
  49. goto end
  50. :notshar
  51. if not errorlevel == 1 goto ok19
  52. echo ****************************************************************************
  53. echo ***     Your version of DOOM 1.9 registered seams modified! This PWAD    ***
  54. echo *** may or may not work with the modified PWAD file.                     ***
  55. :getkey
  56. echo *** Press [ENTER] to try running the PWAD anyways, or [ESC] to abort.    ***
  57. echo ****************************************************************************
  58. dmcheck /q ask
  59. echo  
  60. if errorlevel == 255 goto end
  61. :ok19
  62. echo  
  63. echo ╔═════════════════════════════════════════════════════════╗
  64. echo ║ Press [ENTER] to run OTTAWAU, or press CTRL-C to abort. ║
  65. echo ╚═════════════════════════════════════════════════════════╝
  66. pause >nul
  67. doom -file ottawau.wad
  68. :end
  69.