Advertisement
TheDemystifier

Crash fixes

Jul 31st, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <Purpose>
  2. - "This plugin is meant to fix some common crashes AFTER you have followed STEP guides and sensible modding rules! It does not fix problems that come from modding irresponsibly or conflicts between mods. You can turn each individual fix on / off in the SKSE/Plugins/CrashFixPlugin.ini, default settings recommended but if you have problems with something and you know what you're doing you can change."
  3. </Purpose>
  4.  
  5. <Notes>
  6. After installation, open SKSE/Plugins/CrashFixPlugin.ini in a text editor and make the following changes:
  7.     [Patch]
  8.     UseOSAllocators=1
  9.     AlignHeapAllocate=1
  10.  
  11. After Installing this, make these further changes (per author's recommendation - Re-Check the mod page, for updates) :
  12.     Skyrim.ini:
  13.         [General]
  14.         * Remove "uExterior Cell Buffer" line from the ini .. REASON: setting this too high causes crashes more, especially when game wants to unload many cells at once. If you set 0 or just remove it from your INI then game decides this and that's the best way.
  15.         * Remove "bPreemptivelyUnloadCells=0" .. REASON: this setting is 0 by default, setting this 1 will mean game purges cell buffers and unload cell whenever it is possible. Default is 0 which means keep cell in memory until we need the space for other cells. I find 0 to be better, there's no reason to unload cell immediately, the buffer was implemented for a reason. Also may cause stutters
  16.         [Papyrus]
  17.         * Ignore "fPostLoadUpdateTimeMS=2000"  .. REASON: Already did it elsewhere!
  18.         * Remove "fUpdateBudgetMS" .. REASON: If you have a lot of script heavy mods and a good PC you can set higher for example 2.0, however this can reduce your FPS when a lot of things are happening.
  19.         * Remove "fExtraTaskletBudgetMS" .. REASON: SAME AS "fUpdateBudgetMS"
  20.         * Ignore "bEnableLogging=0" .. REASON: I'm handling this myself
  21.         * Ignore "bEnableTrace=0" .. REASON: SAME AS "bEnableLogging"
  22. </Notes>
  23.  
  24. <Download-Installation>
  25. - Download 'Crash Fixes v12' main file.
  26. </Download-Installation>
  27.  
  28. <Compatibility-Issues>
  29. </Compatibility-Issues>
  30.  
  31. <LoadOrder>
  32. </LoadOrder>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement