home *** CD-ROM | disk | FTP | other *** search
/ Demon Gate 666 / DemonGate666.bin / mac / DETAILS / A-B / BBUTDOOM / BFD_KBD.BAT < prev    next >
DOS Batch File  |  1994-11-25  |  736b  |  38 lines

  1. @echo off
  2. rem ************************************************************
  3. rem *                  Install demo-wadfile                    *
  4. rem ************************************************************
  5. cls
  6. IF "%1"=="" GOTO BAD
  7. IF "%2"=="" GOTO BAD
  8.  
  9. :GOOD
  10. echo Installing wadfile...
  11. if NOT EXIST kickbutt.bat GOTO NOK1
  12. if NOT EXIST kickbutt.wad GOTO NOK2
  13. copy kickbutt.bat %2
  14. copy kickbutt.wad %2
  15. echo done!
  16. echo  
  17. pause
  18. goto endb
  19.  
  20. :NOK1
  21. cls
  22. echo File 'kickbutt.bat' is missing,please re-install Butthead For Doom. 
  23. echo  
  24. pause
  25. goto endb
  26.  
  27. :NOK2
  28. cls
  29. echo File 'kickbutt.wad' is missing,please re-install Butthead For Doom. 
  30. echo  
  31. pause
  32. goto endb
  33.  
  34. :BAD
  35. echo Please run b_setup.exe
  36. goto endb
  37.  
  38. :endb