home *** CD-ROM | disk | FTP | other *** search
/ Game Killer / Game_Killer.bin / 684.DEATHMAP.BAT < prev    next >
DOS Batch File  |  1992-07-13  |  983b  |  39 lines

  1. @echo off
  2.  
  3. if exist wimphead.wl1 goto wimphead_found
  4. echo File WIMPHEAD.WL1 not found.
  5. goto find_wimptemp
  6.  
  7. :wimphead_found
  8.  
  9. if exist wimptemp.wl1 goto copy_deathmap
  10. echo File WIMPTEMP.WL1 not found.
  11. goto exit_error
  12.  
  13. :copy_deathmap
  14. echo Copying DEATHHED.WL1 to MAPHEAD.WL1.
  15. copy deathhed.wl1 maphead.wl1 > nul
  16. echo Copying DEATHTMP.WL1 to MAPTEMP.WL1.
  17. copy deathtmp.wl1 maptemp.wl1 > nul
  18. echo Death maps activated!
  19. goto done
  20.  
  21. :find_wimptemp
  22.  
  23. if exist wimptemp.wl1 goto exit_error
  24. echo File WIMPTEMP.WL1 not found.
  25. goto exit_error
  26.  
  27. :exit_error
  28.  
  29. echo 
  30. echo ╔═══════════════════════════════════════════════════════╗
  31. echo ║    An error occurred during Death map installation!   ║
  32. echo ╟───────────────────────────────────────────────────────╢
  33. echo ║ Please copy the original MAPHEAD.WL1 to WIMPHEAD.WL1. ║
  34. echo ║ Please copy the original MAPTEMP.WL1 to WIMPTEMP.WL1. ║
  35. echo ╚═══════════════════════════════════════════════════════╝
  36. :done
  37.  
  38. echo on
  39.