Advertisement
Guest User

How To Manually Generate The ArchiveInvalidation.Txt File

a guest
Mar 6th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.53 KB | None | 0 0
  1. How To Manually Generate The ArchiveInvalidation.Txt File.
  2. ============================================================================================================
  3.  
  4. WHAT THIS GUIDE PROVIDES:
  5. This is a step-by-step guild to manually generate a ArchiveInvalidation.txt file for Oblivion and the Fallout games.
  6.  
  7. BACKGROUND:
  8. The ArchiveInvalidation.txt is a Bethesda game file used to indicate to the game engine which default game textures to override with custom mod textures. This process is the primary mechanism for using hi-res mods/textures. There are some existing utilities that already provide this functionality such as Nexus Mod Manager, Fallout New Vegas ArchiveInvalidation Invalidated, ArchiveInvalidation.txt File Generator, etc.
  9.  
  10. WHY MANUALLY BUILD THE FILE?
  11. This is for advanced users who wish to manually create the ArchiveInvalidation.txt file. Some utilities (like Fallout New Vegas ArchiveInvalidation Invalidated) have not been updated, and no longer work correctly.
  12.  
  13. ============================================================================================================
  14.  
  15. REQUIREMENTS:
  16.  
  17. 1) The game is installed correctly.
  18. 2) You are not using any other mod or utility which performs invalidation.
  19. 3) You are comfortable using the DOS command prompt and manually editing text files.
  20. 4) You are running as Administrator.
  21. 5) You have an advanced text editor like Notepad++, TextPad, etc.
  22.  
  23. WARNING!!! If you do not meet the requirements listed above, STOP RIGHT HERE! DO NOT PROCEED!!!
  24.  
  25. ============================================================================================================
  26.  
  27. This is an example for Fallout New Vegas. Obviously other games will have different paths.
  28.  
  29. STEPS:
  30.  
  31. 1) Open a command prompt, and change to the Textures directory.
  32.  
  33. Example:
  34.  
  35. cd /d "C:\Program Files (x86)\Steam\steamapps\common\fallout new vegas\Data\Textures
  36.  
  37. 2) Run the following command:
  38.  
  39. dir /s/b /a-d > "C:\Program Files (x86)\Steam\steamapps\common\fallout new vegas\ArchiveInvalidation.txt"
  40.  
  41. 3) Edit the new ArchiveInvalidation.txt file. Remove the path value up to core directory name "Textures".
  42.  
  43. Example:
  44.  
  45. this:
  46. C:\Program Files (x86)\Steam\steamapps\common\fallout new vegas\Data\Textures\architecture\barracks\barracks01.dds
  47.  
  48. becomes:
  49.  
  50. Textures\architecture\barracks\barracks01.dds
  51.  
  52. 4) Replace all backslash characters "\" with forward slashes "/".
  53.  
  54. Example:
  55.  
  56. this:
  57.  
  58. Textures\architecture\barracks\barracks01.dds
  59.  
  60. becomes:
  61.  
  62. Textures/architecture/barracks/barracks01.dds
  63.  
  64. 5) If everything has been done correctly, the new ArchiveInvalidation.txt file contents should like something like this:
  65.  
  66. Example: (Of course, your list will vary depending on the mods you have installed)
  67.  
  68. Textures/architecture/barracks/barracks01.dds
  69. Textures/Pipboy3000/pipboyarm01.dds
  70. Textures/Pipboy3000/pipboyarm01_n.dds
  71. Textures/Pipboy3000/pipboybtnglow01.dds
  72. Textures/Pipboy3000/pipboyglove01.dds
  73. Textures/Pipboy3000/pipboyglove01_n.dds
  74. Textures/Pipboy3000/screenglare.dds
  75. Textures/Pipboy3000/PC/pipboyarm01.dds
  76. Textures/Pipboy3000/PC/pipboyarm01_n.dds
  77. Textures/Pipboy3000/PC/english/pipboyarm01.dds
  78.  
  79. 6) Apply these updates to your INI files if needed:
  80.  
  81. C:\Users\[your profile]\Documents\My Games\FalloutNV\Fallout.ini
  82.  
  83. [ARCHIVE]:
  84. SInvalidationFile=ArchiveInvalidation.txt
  85. bInvalidateOlderFiles=1
  86.  
  87.  
  88. DONE!
  89.  
  90. If you have any questions or corrections, please let me know at:
  91.  
  92. http://www.nexusmods.com/newvegas/mods/52402
  93.  
  94.  
  95. Thanks!
  96. SirGarnon
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement