home *** CD-ROM | disk | FTP | other *** search
/ Superdead 2 / superdead2.iso / cc1 / neu / mbcc1034 / untruc.bat < prev    next >
DOS Batch File  |  1996-10-09  |  2KB  |  79 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 bikeunt.mon goto NOLAS
  6. if not exist bikeico.mon goto NOLAS
  7. if not exist cclite.exe goto NOCC
  8. if not exist truck.pat goto NOPAT
  9. if not exist untruck.pat goto NOPAT
  10. if not exist ccnames.exe goto NONAME
  11.  
  12.  
  13. echo.
  14. echo MONSTER TRUCK V2.0 DEINSTALLER
  15. echo =========================
  16. echo.
  17. echo.
  18. echo NOTE: This Utility will edit some C&C files:
  19. echo       -conquer.mix
  20. echo       -local.mix
  21. echo       -game.dat
  22. echo.
  23. echo       If you want to cancel and save this files first
  24. echo       hit CTRL-C or hit any key to continue
  25. echo.
  26. echo    by Felix&Christian Oppermann
  27. echo    Using programs by Andrew Griffin and Vladan Bato
  28. pause
  29. cls
  30. echo.
  31. echo deinstalling MONSTER TRUCK V2.0...
  32. mmlite conquer.mix -r i110 bikeunt.mon >nul
  33. mmlite conquer.mix -r i181 bikeico.mon >nul
  34. cclite -u untruck.pat
  35. del bikeunt.mon
  36. del bikeico.mon
  37. CCNAMES conquer.eng -r:158 "Recon Bike"
  38.  
  39. echo.
  40. echo The Monster Truck V2.0 has been deinstalled.
  41. echo Use the insttruc.bat file to reinstall it.
  42. goto END
  43.  
  44. :NOPAT
  45. echo Either the file 'truck.pat' or 'untruck.pat' are not in the current directory
  46. echo You need these files to change the game.dat configuration.
  47. goto BADEND
  48.  
  49. :NOCC
  50. echo The file 'cclite.exe' is not in the current directory. You need this file
  51. echo to change your game.dat file.
  52. goto BADEND
  53.  
  54. :NOMM
  55. echo The file 'mmlite.exe' is not in the current directory. You need this file
  56. echo to change your conquer.mix file so you see the old graphics.
  57. goto BADEND
  58.  
  59. :NOCO
  60. echo The file 'conquer.mix' is not in the current directory. You need this file.
  61. goto BADEND
  62.  
  63. :NOLAS
  64. echo Either the file 'bikeunt.mon' or 'bikeico.mon' is not in the
  65. echo current directory. You need this file as it contains the graphics 
  66. echo for the structure.
  67. goto BADEND
  68.  
  69. :NONAME
  70. echo The file 'CCNAMES.EXE' is not in the current directory. You need this file
  71. echo to change the name of the obelisk.
  72. goto BADEND
  73.  
  74. :BADEND
  75. echo The deinstallation process failed.
  76. goto END
  77.  
  78. :END
  79.