home *** CD-ROM | disk | FTP | other *** search
/ Game Killer / Game_Killer.bin / 685.WIMPMAP.BAT < prev    next >
DOS Batch File  |  1992-07-13  |  996b  |  41 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 restore_wimpmap
  10. echo File WIMPTEMP.WL1 not found.
  11. goto exit_error
  12.  
  13. :restore_wimpmap
  14.  
  15. echo Copying WIMPHEAD.WL1 to MAPHEAD.WL1.
  16. copy wimphead.wl1 maphead.wl1 > nul
  17. echo Copying WIMPHEAD.WL1 to MAPTEMP.WL1.
  18. copy wimptemp.wl1 maptemp.wl1 > nul
  19. echo Wimpy maps activated!
  20. goto done
  21.  
  22. :find_wimptemp
  23.  
  24. if exist wimptemp.wl1 goto exit_error
  25. echo File WIMPTEMP.WL1 not found.
  26. goto exit_error
  27.  
  28. :exit_error
  29.  
  30. echo 
  31. echo ╔════════════════════════════════════════════════════════╗
  32. echo ║     An error occurred during Wimp map installation!    ║
  33. echo ╟────────────────────────────────────────────────────────╢
  34. echo ║ The original MAPHEAD.WL1 should exist as WIMPHEAD.WL1. ║
  35. echo ║ The original MAPTEMP.WL1 should exits as WIMPTEMP.WL1. ║
  36. echo ╚════════════════════════════════════════════════════════╝
  37.  
  38. :done
  39.  
  40. echo on
  41.