home *** CD-ROM | disk | FTP | other *** search
/ Superdead 2 / superdead2.iso / cc1 / neu / mbcc1029 / unflame.bat < prev    next >
Encoding:
DOS Batch File  |  1996-10-10  |  2.2 KB  |  82 lines

  1. @echo off
  2.  
  3. if not exist mmlite.exe goto NOMM
  4. if not exist conquer.mix goto NOCO
  5. if not exist guardico.flm goto NOFLM
  6. if not exist guardunt.flm goto NOFLM
  7. if not exist guardmak.flm goto NOFLM
  8. if not exist cclite.exe goto NOCC
  9. if not exist truck.pat goto NOPAT
  10. if not exist untruck.pat goto NOPAT
  11. if not exist ccnames.exe goto NONAME
  12.  
  13.  
  14. echo.
  15. echo FLAME TOWER V2.0 DEINSTALLER
  16. echo ============================
  17. echo.
  18. echo.
  19. echo NOTE: This Utility will edit some C&C files:
  20. echo       -conquer.mix
  21. echo       -local.mix
  22. echo       -game.dat
  23. echo.
  24. echo       If you want to cancel and save this files first
  25. echo       hit CTRL-C or hit any key to continue
  26. echo.
  27. echo    by Felix&Christian Oppermann
  28. echo    Using programs by Andrew Griffin and Vladan Bato
  29. pause
  30. cls
  31. echo.
  32. echo deinstalling FLAME TOWER V2.0...
  33. mmlite conquer.mix -r i214 guardmak.flm >nul
  34. mmlite conquer.mix -r i231 guardico.flm >nul
  35. mmlite conquer.mix -r i157 guardunt.flm >nul
  36. cclite -u unflame.pat
  37. del guardmak.flm
  38. del guardico.flm
  39. del guardunt.flm
  40. CCNAMES conquer.eng -r:111 "Guard Tower"
  41.  
  42. echo.
  43. echo The Flame Tower V2.0 has been deinstalled.
  44. echo Use the instflam.bat file to reinstall it.
  45. goto END
  46.  
  47. :NOPAT
  48. echo Either the file 'flame.pat' or 'unflame.pat' are not in the current directory
  49. echo You need these files to change the game.dat configuration.
  50. goto BADEND
  51.  
  52. :NOCC
  53. echo The file 'cclite.exe' is not in the current directory. You need this file
  54. echo to change your game.dat file.
  55. goto BADEND
  56.  
  57. :NOMM
  58. echo The file 'mmlite.exe' is not in the current directory. You need this file
  59. echo to change your conquer.mix file so you see the old graphics.
  60. goto BADEND
  61.  
  62. :NOCO
  63. echo The file 'conquer.mix' is not in the current directory. You need this file.
  64. goto BADEND
  65.  
  66. :NOLAS
  67. echo Either the file 'guardunt.flm' or 'guardico.flm' or 'guardmak.flm is not 
  68. echo in the current directory. You need this file as it contains the graphics 
  69. echo for the structure.
  70. goto BADEND
  71.  
  72. :NONAME
  73. echo The file 'CCNAMES.EXE' is not in the current directory. You need this file
  74. echo to change the name of the obelisk.
  75. goto BADEND
  76.  
  77. :BADEND
  78. echo The deinstallation process failed.
  79. goto END
  80.  
  81. :END
  82.