artez

taz3-cleaner

May 11th, 2021
415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.10 KB | None | 0 0
  1. @echo off
  2. echo ---------------------------------------------------------------------------
  3. echo This small batch script removes/cleans remainings from other mods and
  4. echo other problematic changes making TAZ more of a weapon pack than a
  5. echo total convertion or whatever it tries to be.
  6. echo So it should make TAZ more compatible with other mods.
  7. echo I made this script for myself, so no guarantees
  8. echo Version from 11-may-21
  9. echo ---------------------------------------------------------------------------
  10. echo list of things that script removes:
  11. echo taz detectors
  12. echo BnS leftovers
  13. echo wepl hit effects
  14. echo anomaly injury sounds extended
  15. echo aim rattle sounds
  16. echo taz mutant icons
  17. echo taz ui/hud
  18. echo additional taz icons
  19. echo random sound files
  20. echo random hand meshes/textures
  21. echo cheesy bandaids
  22. echo ---------------------------------------------------------------------------
  23. pause
  24. echo ---------------------------------------------------------------------------
  25. echo Double check if the script is the correct directory.
  26. echo Script should be in the same folder where gamedata is.
  27. echo After pressing any key script will do the work.
  28. echo ---------------------------------------------------------------------------
  29. pause
  30. @echo on
  31. cd /D "%~dp0"
  32.  
  33. rmdir /s /q "%~dp0\gamedata\anims\camera_effects\wepl"
  34.  
  35. rmdir /s /q "%~dp0\gamedata\configs\items\items"
  36.  
  37. del "%~dp0\gamedata\configs\items\weapons\w_ak12_custom.ltx"
  38. del "%~dp0\gamedata\configs\items\weapons\w_ak12_m1.ltx"
  39. del "%~dp0\gamedata\configs\items\weapons\w_ak74m_beard.ltx"
  40. del "%~dp0\gamedata\configs\items\weapons\w_akm_isg.ltx"
  41. del "%~dp0\gamedata\configs\items\weapons\w_kac_isg.ltx"
  42. del "%~dp0\gamedata\configs\items\weapons\w_saiga_m1.ltx"
  43. del "%~dp0\gamedata\configs\items\weapons\w_saiga_m2.ltx"
  44. del "%~dp0\gamedata\configs\items\weapons\w_usp_docter.ltx"
  45. del "%~dp0\gamedata\configs\items\weapons\w_vintorez_isg.ltx"
  46. del "%~dp0\gamedata\configs\items\weapons\w_vintorez_m1.ltx"
  47. del "%~dp0\gamedata\configs\items\weapons\w_vintorez_m2.ltx"
  48.  
  49. del "%~dp0\gamedata\configs\plugins\wepl_hit_effect_outfits.ltx"
  50. del "%~dp0\gamedata\configs\plugins\wepl_hit_effect_visuals.ltx"
  51.  
  52. del "%~dp0\gamedata\configs\ui\maingame_16.xml"
  53. del "%~dp0\gamedata\configs\ui\messages_window.xml"
  54.  
  55. del "%~dp0\gamedata\configs\alife.ltx"
  56.  
  57. rmdir /s /q "%~dp0\gamedata\meshes\anomaly_weapons\hands"
  58.  
  59. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\devices\dev_artefact"
  60. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\devices\dev_binoculars"
  61. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\devices\dev_bolt"
  62. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\devices\dev_detector_1"
  63. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\devices\dev_detector_2"
  64. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\devices\dev_detector_3"
  65. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\devices\dev_detector_4"
  66. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\devices\dev_detector_8"
  67. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\devices\dev_detector_09"
  68.  
  69. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\weapons\wpn_kac_isg"
  70. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\weapons\wpn_m1895"
  71. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\weapons\wpn_ru556"
  72. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\weapons\wpn_saiga12_m2"
  73. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\weapons\wpn_vintorez_isg"
  74. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\weapons\wpn_vintorez_m1"
  75. rmdir /s /q "%~dp0\gamedata\meshes\dynamics\weapons\wpn_vintorez_m2"
  76.  
  77.  
  78. del "%~dp0\gamedata\scripts\aimscript.script"
  79. del "%~dp0\gamedata\scripts\wepl_hit_effect.script"
  80.  
  81. rmdir /s /q "%~dp0\gamedata\sounds\actor"
  82. rmdir /s /q "%~dp0\gamedata\sounds\affects"
  83. rmdir /s /q "%~dp0\gamedata\sounds\backup"
  84. rmdir /s /q "%~dp0\gamedata\sounds\characters_voice"
  85. rmdir /s /q "%~dp0\gamedata\sounds\human"
  86. rmdir /s /q "%~dp0\gamedata\sounds\interface"
  87. rmdir /s /q "%~dp0\gamedata\sounds\material"
  88. rmdir /s /q "%~dp0\gamedata\sounds\wepl"
  89.  
  90. rmdir /s /q "%~dp0\gamedata\sounds\weapons\aimin"
  91. rmdir /s /q "%~dp0\gamedata\sounds\weapons\aimout"
  92.  
  93. rmdir /s /q "%~dp0\gamedata\sounds\weapons\ak74m_beard"
  94. rmdir /s /q "%~dp0\gamedata\sounds\weapons\akm_isg"
  95. rmdir /s /q "%~dp0\gamedata\sounds\weapons\kac"
  96. rmdir /s /q "%~dp0\gamedata\sounds\weapons\ru556"
  97. rmdir /s /q "%~dp0\gamedata\sounds\weapons\vintorez_m1"
  98. rmdir /s /q "%~dp0\gamedata\sounds\weapons\vss_isg"
  99. rmdir /s /q "%~dp0\gamedata\sounds\weapons\usp_match_docter"
  100.  
  101. del "%~dp0\gamedata\textures\ui\ui_actor_menu.dds"
  102. del "%~dp0\gamedata\textures\ui\ui_global_map.dds"
  103. del "%~dp0\gamedata\textures\ui\ui_icon_equipment.dds"
  104. del "%~dp0\gamedata\textures\ui\ui_wheel_ammo.dds"
  105. rmdir /s /q "%~dp0\gamedata\textures\ui\items"
  106.  
  107. rmdir /s /q "%~dp0\gamedata\textures\wpn\ak12_custom"
  108. rmdir /s /q "%~dp0\gamedata\textures\wpn\ak74_cod"
  109. rmdir /s /q "%~dp0\gamedata\textures\wpn\saiga12_m2"
  110. rmdir /s /q "%~dp0\gamedata\textures\wpn\tactical_knife"
  111. rmdir /s /q "%~dp0\gamedata\textures\wpn\wpn_kac"
  112. rmdir /s /q "%~dp0\gamedata\textures\wpn\wpn_kukri"
  113. rmdir /s /q "%~dp0\gamedata\textures\wpn\usp_match_docter"
  114.  
  115. @echo off
  116. echo ----------------------------
  117. echo Script's done, hf
  118. echo ----------------------------
  119.  
  120. pause
Advertisement
Add Comment
Please, Sign In to add comment