<?xml version="1.0"?>
<rss version="2.0"><channel><title/><link>https://www.loverslab.com/blogs/blog/1311-mrsrts-technical-blog/</link><description><![CDATA[<p>
	Skyrim technical topic by mrsrt. I'll publish here guides, researches and interesting findings related to technical part of the game. 
</p>]]></description><language>en</language><item><title>2020 Skyrim LE Stability Guide</title><link>https://www.loverslab.com/blogs/entry/10715-2020-skyrim-le-stability-guide/</link><description><![CDATA[<p>
	This is the most actual stability guide that will help you to fix known crashes, technical problems, bugs and improve overall gaming experience as much as the old 32-bit game engine allows. 
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<span style="color:#f39c12;"><span style="font-size:16px;"><strong>Philosophy of Crashes</strong></span></span>
</p>

<p>
	Complete text
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p>
			Before we start to work on something we should understand what exactly we will work with. Crashes-To-Desktop (CTD) always caused by Unhandled Exceptions inside the game process. It means something went bad in a way when the game engine cannot continue its work. For example, we need to read a value in some configuration file. We read the file, find the required variable and parse its value. But what if we try to read a file that is not exist? - Exception will be thrown that potentially may crash your game. Developers must check first if the file exists and only then try to read it. 
		</p>

		<p>
			 
		</p>

		<p>
			Skyrim is a game, considered to be a modding sandbox. It was developed to be modded, special tools was shared for modmakers to help them create new content for the game. Everything was done in a way to allow players make mods. Except file validation. 
		</p>

		<p>
			You can replace any file you want for the game whether it will be esp, animation, texture or skeleton, but the game engine completely have no checks for what is that file. You can simply create a txt file, rename it to skeleton.hkx, put it for some creature and the game seriously will consider the file as a skeleton. <span style="color:#f39c12;">No checks for structure, no checks for resource data at all</span>. And this is the most common reason of CTDs in 2020 skyrim.
		</p>

		<p>
			Let's say, you downloaded a new remodel for sweetrolls, it has a mesh and the mesh was built with some new format that game engine doens't know. It will have the same extension and look like valid, it will even work, but under some circumstances some data inside the mesh will be different, the game engine will not expect that and in result it may lead to crash. Simply because the mesh format is not correspond to one, expected by engine. Is it fault of modmaker? - No, this is a completely developer's fault. If a file is expected to be replaced it must pass checks and only then used. 
		</p>

		<p>
			 
		</p>

		<p>
			Ofcourse, this is not the only reason for CTDs. The second most common reason of crashes are bad designed mods/scripts. The game gives to modders quite wide opporunities to create stuff. If a modder doesn't know how to use them properly or simply made a mistake it may also lead to unhappy consequences, especially with SKSE usage. <span style="color:#f39c12;">The game can crash and even ruin your gamesave because of one 10-lines script</span>.
		</p>

		<p>
			 
		</p>

		<p>
			The game also have unsafe memory design, internal bugs, 32-bit app limitations, legacy code that works by miracle, but these 2 reasons above cover 95% of CTDs of modern skyrim by my analysis. In other words, if you're modding your game you're always risking to get crashes.
		</p>
	</div>
</div>

<p>
	 
</p>

<p>
	<span> </span>TL;DR
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p>
			Most of modern skyrim crashes caused by 2 main reasons:
		</p>

		<p>
			- The game engine has no resource checks
		</p>

		<p>
			- Bad designed mods
		</p>

		<p>
			If you're modding your game you're always risking to get crashes.
		</p>
	</div>
</div>

<p>
	 
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<span style="color:#f39c12;"><span style="font-size:16px;"><strong>Part I - Memory Patches</strong></span></span>
</p>

<p>
	Skyrim's memory model was designed to work with fixed sized memory blocks. There're a lot of memory blocks in the game process, but we're insterested in 2 main blocks. These blocks hold dynamic in-game data such as NPCs, quests, items and models of everything you see in the game together with script data and something else. It's obvious, the more you mod your game the more data will be stored inside these blocks. But, their sizes are fixed and if stored data overflow crash happens. 
</p>

<p>
	 
</p>

<p>
	We have 2 ways to fix the problem:
</p>

<p>
	- SSME: Largely increase their size to fit appetite of modern skyrim.
</p>

<p>
	- OSAllocators: Remove these blocks and store its data in shared area using OS allocations. 
</p>

<p>
	 
</p>

<p>
	Both ways work, both ways have its pros and cons, and both ways will be shown here. You can choose yourself what path to go:
</p>

<p>
	 
</p>

<p>
	<span style="color:#f39c12;"><strong>SSME (Recommended)</strong></span><span style="color:#e67e22;">:</span>
</p>

<p>
	<span style="color:#2ecc71;">+</span> Found by me as the most stable way
</p>

<p>
	<span style="color:#2ecc71;">+</span> Uses default alloc method that engine supposed to work with
</p>

<p>
	<span style="color:#e74c3c;">-</span> Block size increased but still limited <em>(enough for vast majority of players)</em>
</p>

<p>
	<span style="color:#c0392b;">-</span> Size of Block 2 cannot be modified<em> (but it's very hard to overflow the block even with a hardly modded game)</em>
</p>

<p>
	 
</p>

<p>
	<span style="color:#f39c12;"><strong>OS Allocators</strong>:</span>
</p>

<p>
	<span style="color:#2ecc71;">+</span> Blocks completely unlimited, all data stored in shared process area
</p>

<p>
	<span style="color:#2ecc71;">+</span> Supposed to be faster
</p>

<p>
	<span style="color:#c0392b;">-</span> Less stable by my tests and much more sensitive to resource data
</p>

<p>
	<span style="color:#c0392b;">-</span> May require additional calibrations 
</p>

<p>
	 
</p>

<p>
	<strong>Opinion</strong>: I always prefer SSME way. for me it behaves more stable and less buggy, however, if your game is very very extremely modded limitations of SSME way may affect. However, I met only one person yet who was able to mod the game to such condition. If you still don't know what to choose go SSME way, it will fit 99% of players.
</p>

<p>
	 
</p>

<p>
	<strong>SSME way:</strong>
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p>
			<span style="color:#f39c12;"><strong>SKSE configuration</strong></span>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					SKSE is an extender for Skyrim that expands its script language, allows mod makers to create native functions and much more. It is mandatory to have installed SKSE nowadays. In case for some reason you didn't install SKSE yet, it can be found here: <a href="https://skse.silverlock.org/" rel="external nofollow" style="background-color:transparent;color:#87b8d7;">https://skse.silverlock.org/</a>
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					After installation you need to create a file named <u><span style="color:#ecf0f1;"><strong>SKSE.ini</strong></span></u><span> </span>in directory <u><strong><span style="color:#ecf0f1;">Data/SKSE</span></strong></u>. If you already have it make sure that u have right values for variables as below. The most important config here is <span style="color:#ebe7e3;">DefaultHeapInitialAllocMB</span> it is responsible for Block 1 size, we set it to 1280 (default 256) that will fit even extremely hard modded games. 
				</p>

				<pre style="background-color:#262626;border:1px solid #888888;color:#bfbfbf;font-size:14px;padding:2px;">


<span style="color:#ebe7e3;">[General]
# Warns us if some mod is missing when we load a game save
EnableDiagnostics=1
# Skse will do clean up if u have dirty removed some mod from a game save  
ClearInvalidRegistrations=1

[Memory]
# Memory patches with recommended values
DefaultHeapInitialAllocMB=1280
ScrapHeapSizeMB=256

[Display]
# Higher quality of makeup textures for characters. 2048 should be pretty enough. Default: 256
iTintTextureResolution=2048

[Debug]
# If your skyrim has crashed it will create a mini crashdump that we may use to determine the reason of it
WriteMinidumps=1</span> </pre>
			</div>
		</div>

		<p>
			 
		</p>

		<p>
			<span style="color:#f39c12;"><strong>CrashFixPlugin</strong></span>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p>
					This is the main stability plugin for Skyrim LE as it fixes many consequences caused by lack of resource checking as well as other crashing places. <span style="background-color:#262626;color:#bfbfbf;font-size:14px;">Can be found here: </span><a href="https://www.nexusmods.com/skyrim/mods/72725/" rel="external nofollow" style="background-color:#262626;color:#87b8d7;font-size:14px;">https://www.nexusmods.com/skyrim/mods/72725/</a>
				</p>
			</div>
		</div>

		<p>
			 
		</p>

		<p>
			<strong><span style="color:#f39c12;">EnbSeries</span></strong>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					It is mandatory to enbseries be installed for skyrim nowadays not just because it's beautiful, but for memory management and other features. Install the last version from here (if not installed): <a href="http://enbdev.com/download_mod_tesskyrim.htm" rel="external nofollow">http://enbdev.com/download_mod_tesskyrim.htm</a>
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					Once installed find your<span> </span><span style="color:#ecf0f1;"><u><strong>enblocal.ini</strong></u></span><span> </span>in the main directory. It is a config file with basic local options for enbseries. 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					<span style="color:#f39c12;"><strong>ReduceSystemMemoryUsage</strong></span> - delegates texture data storage to another process(es). This is the most important option that should always be enabled. Greatly frees the game process memory from texture data what prevents the game from crashes caused by 32-bit app memory limitations. 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					<span style="color:#f39c12;"><strong>VideoMemorySizeMb<span> </span></strong></span>- don't forget to put here the amount of your video memory size (mb). This way enb will know how much it can use. Or if you are too lazy or just don't know turn <span style="color:#f39c12;"><strong>AutodetectVideoMemorySize</strong><span> </span></span>to<span> </span><strong><span style="color:#f39c12;">true</span></strong>.
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					<span style="color:#f39c12;"><strong>ExpandSystemMemoryX64</strong></span><span> </span>- experimental option that enables blocks storage on the bottom of the process memory. May help with stutterings. Not recommended due to inability to work with block 1 more than 768mb. You can play with the option if you want but firstly you should set <span style="color:#ebe7e3;">DefaultHeapInitialAllocMB=768</span> in SKSE.ini, otherwise CTD on loading happens.   
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					<strong><span style="color:#f39c12;">EnableFPSLimit</span></strong> - disable this if you want to play with uncapped or higher than 60 fps. 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					<span style="background-color:#262626;color:#bfbfbf;font-size:14px;">If you still have some technical problems with enb or the game itself try to use the </span><span style="background-color:#444444;color:#f1f1f1;font-size:14px;">ISSUES AND BUG FIXES</span><span style="background-color:#262626;color:#bfbfbf;font-size:14px;"> section here: </span><a href="https://www.nexusmods.com/skyrim/mods/38649" rel="external nofollow" style="background-color:#262626;color:#87b8d7;font-size:14px;">https://www.nexusmods.com/skyrim/mods/38649</a><span style="background-color:#262626;color:#bfbfbf;font-size:14px;"> If your PC is not strong enough you also may find enboost useful.</span>
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					<span style="color:#c0392b;"><strong>DO NOT REPLACE YOUR enblocal.ini WITH ANY ENB PRESETS! This is your own configuration file for your PC.</strong></span>
				</p>
			</div>
		</div>

		<p>
			 
		</p>

		<p>
			<span style="color:#f39c12;"><strong>Safety Load</strong></span>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p>
					<span style="background-color:#262626;color:#bfbfbf;font-size:14px;">This mod fixes the annoying bug when your loading between cells becomes infinite. It happens because of deadlock which the mod fixes. Can be found here: </span><a href="https://www.nexusmods.com/skyrim/mods/46465" rel="external nofollow" style="background-color:#262626;color:#87b8d7;font-size:14px;">https://www.nexusmods.com/skyrim/mods/46465</a>
				</p>
			</div>
		</div>

		<p>
			 
		</p>
	</div>
</div>

<p>
	 
</p>

<p>
	<strong>OS Allocators way:</strong>
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p>
			<strong style="background-color:#1c1c1c;color:#f39c12;font-size:14px;"><span> </span></strong><span style="color:#f39c12;"><strong>SKSE configuration</strong></span>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					SKSE is an extender for Skyrim that expand its script language, allows mod makers to create native functions and much more. It is mandatory to have installed SKSE nowadays. In case for some reason you didn't install SKSE yet, it can be found here: <a href="https://skse.silverlock.org/" rel="external nofollow" style="background-color:transparent;color:#87b8d7;">https://skse.silverlock.org/</a>
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					After installation you need to create a file named <u><span style="color:#ecf0f1;"><strong>SKSE.ini</strong></span></u><span> </span>in directory <u><strong><span style="color:#ecf0f1;">Data/SKSE</span></strong></u>. If you already have it make sure that u have right values for variables as below:
				</p>

				<pre style="background-color:#262626;border:1px solid #888888;color:#bfbfbf;font-size:14px;padding:2px;">


<span style="color:#ebe7e3;">[General]
# Warns us if some mod is missing when we load a game save
EnableDiagnostics=1
# Skse will do clean up if u have dirty removed some mod from a game save  
ClearInvalidRegistrations=1

[Display]
# Higher quality of makeup textures for characters. 2048 should be pretty enough. Default: 256
iTintTextureResolution=2048

[Debug]
# If your skyrim has crashed it will create a mini crashdump that we may use to determine the reason of it
WriteMinidumps=1</span> </pre>
			</div>
		</div>

		<p>
			 
		</p>

		<p>
			<span style="color:#f39c12;"><strong>CrashFixPlugin</strong></span>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p>
					This is the main stability plugin for Skyrim LE as it fixes many consequences caused by lack of resource checking as well as other crashing places. <span style="background-color:#262626;color:#bfbfbf;font-size:14px;">Can be found here: </span><a href="https://www.nexusmods.com/skyrim/mods/72725/" rel="external nofollow" style="background-color:#262626;color:#87b8d7;font-size:14px;">https://www.nexusmods.com/skyrim/mods/72725/</a>
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					Also we need a plugin preloader to make it work proper: <a href="https://www.nexusmods.com/skyrim/mods/75795/" rel="external nofollow" style="background-color:transparent;color:#87b8d7;">https://www.nexusmods.com/skyrim/mods/75795/</a> (be sure to put the dll to the same directory with skyrim.exe)
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					Once everything installed find the config file:<span> </span><u><span style="color:#ecf0f1;"><strong>Data/SKSE/Plugins/CrashFixPlugin.ini</strong></span></u> and set <span style="color:#f39c12;"><strong>UseOSAllocators=1</strong></span><span>. </span>
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					If you have any problems you can also take attention on options like <span style="color:#f39c12;"><strong>CustomMemoryBlock</strong></span> and others. All options are pretty well described.
				</p>
			</div>
		</div>

		<p>
			 
		</p>

		<p>
			<strong><span style="color:#f39c12;">EnbSeries</span></strong>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					It is mandatory to enbseries be installed for skyrim nowadays not just because it's beautiful, but for memory management and other features. Install the last version from here (if not installed): <a href="http://enbdev.com/download_mod_tesskyrim.htm" rel="external nofollow">http://enbdev.com/download_mod_tesskyrim.htm</a>
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					Once installed find your<span> </span><span style="color:#ecf0f1;"><u><strong>enblocal.ini</strong></u></span><span> </span>in the main directory. It is a config file with basic local options for enbseries. 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					<span style="color:#f39c12;"><strong>ReduceSystemMemoryUsage</strong></span> - delegates texture data storage to another process(es). This is the most important option that should always be enabled. Greatly frees the game process memory from texture data what prevents the game from crashes caused by 32-bit app memory limitations. 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					<span style="color:#f39c12;"><strong>VideoMemorySizeMb<span> </span></strong></span>- don't forget to put here the amount of your video memory size (mb). This way enb will know how much it can use. Or if you are too lazy or just don't know turn <span style="color:#f39c12;"><strong>AutodetectVideoMemorySize</strong><span> </span></span>to<span> </span><strong><span style="color:#f39c12;">true</span></strong>.   
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					<strong><span style="color:#f39c12;">EnableFPSLimit</span></strong> - disable this if you want to play with uncapped or higher than 60 fps. 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					<span style="background-color:#262626;color:#bfbfbf;font-size:14px;">If you still have some technical problems with enb or the game itself try to use the </span><span style="background-color:#444444;color:#f1f1f1;font-size:14px;">ISSUES AND BUG FIXES</span><span style="background-color:#262626;color:#bfbfbf;font-size:14px;"> section here: </span><a href="https://www.nexusmods.com/skyrim/mods/38649" rel="external nofollow" style="background-color:#262626;color:#87b8d7;font-size:14px;">https://www.nexusmods.com/skyrim/mods/38649</a><span style="background-color:#262626;color:#bfbfbf;font-size:14px;"> If your PC is not strong enough you also may find enboost useful.</span>
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					<span style="color:#c0392b;"><strong>DO NOT REPLACE YOUR enblocal.ini WITH ANY ENB PRESETS! This is your own configuration file for your PC.</strong></span>
				</p>
			</div>
		</div>

		<p>
			 
		</p>

		<p>
			 
		</p>
	</div>
</div>

<p>
	 
</p>

<p style="text-align:center;">
	<span style="color:#f39c12;"><span style="font-size:16px;"><strong>Part II - Animation Fixes</strong></span></span>
</p>

<p>
	Installing too many animations may bring unwanted consequences, in the worst case you'll not be able to load or start a new game. Even if you don't have additional animations it's still recommended to go through the part. 
</p>

<p>
	 
</p>

<p>
	<span style="color:#f39c12;"><strong>FootIK Solution</strong></span>
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p>
			When you install too many animations the first problem you meet will be the FootIK error. Usually it happens on the first game loading in open spaces. There're several ways to fix the error. <strong><span style="color:#c0392b;">Choose one</span></strong>.
		</p>

		<p>
			 
		</p>

		<p>
			<span style="color:#f39c12;"><strong>ContinueGameNoCrash</strong></span>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p>
					<span style="background-color:#262626;color:#bfbfbf;font-size:14px;">This mod will help us to prevent FootIK error (and probably others) when loading a game save with many fnis animations installed. It works with a simple trick: if we load a game save directly we risk to get error, but if we start a new game and only then load the save the error never happens. And this is what exactly the mod does. Can be found here: </span><a href="https://www.nexusmods.com/skyrim/mods/78557/" rel="external nofollow" style="background-color:#262626;color:#87b8d7;font-size:14px;">https://www.nexusmods.com/skyrim/mods/78557/</a>
				</p>

				<p>
					I recommend to put esp of the mod on top of load order.
				</p>

				<p>
					<span style="background-color:#262626;color:#c0392b;font-size:14px;"><strong>Warning:</strong></span><span style="background-color:#262626;color:#bfbfbf;font-size:14px;"> the version has a little bug, when you start a new game and want to load another save you need to load it twice. Happens only once after a new game creation. Can be fixed with pressing F5 F9 F9. </span>
				</p>
			</div>
		</div>

		<p>
			 
		</p>

		<p>
			<strong><span style="color:#f39c12;">Load Game CTD Fix</span></strong>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p>
					The new version of ContinueGameNoCrash. Works without esp, dll only. Also fixes first loading bug and correctly shows messages with missed esp's. Can be found here: <a href="https://www.nexusmods.com/skyrim/mods/85443" rel="external nofollow">https://www.nexusmods.com/skyrim/mods/85443</a>
				</p>

				<p>
					<span style="background-color:#262626;color:#c0392b;font-size:14px;"><strong>Warning:</strong></span><span style="background-color:#262626;color:#bfbfbf;font-size:14px;"> may impact on fps. I found the dll consumes up to 5 fps for me what made me refuse the solution for personal usage.</span>
				</p>
			</div>
		</div>

		<p>
			 
		</p>

		<p>
			<strong><span style="color:#f39c12;">Animation Loading Fix v1.0 (Recommended)</span></strong>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p>
					Is a modern solution that preloads animations what allows to pass FootIK initialization correctly. I didn't use the solution for long but it should be the best one. Can be found here: <a href="https://www.nexusmods.com/skyrim/mods/98204" rel="external nofollow">https://www.nexusmods.com/skyrim/mods/98204</a> Get version 1.0.
				</p>

				<p>
					<span style="background-color:#262626;color:#c0392b;font-size:14px;"><strong>Warning: VERSION MUST BE STRICTLY 1.0. DO NOT INSTALL VERSION 1.1 OR HIGHER, IT'S INCOMPATIBLE WITH THE NEXT PLUGIN.</strong></span><span style="background-color:#262626;color:#bfbfbf;font-size:14px;"> </span>
				</p>
			</div>
		</div>

		<p>
			 
		</p>
	</div>
</div>

<p>
	 
</p>

<p>
	<span style="color:#f39c12;"><strong>Animation Limit Solution</strong></span>
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p>
			Skyrim has internal limit of numStatcNodes when passing which the game will always crash on loading until you remove some animations. There're 2 solutions to fix this. <span style="color:#c0392b;"><strong>Choose one</strong></span>.
		</p>

		<p>
			 
		</p>

		<p>
			<span style="color:#f39c12;"><strong>Animation Limit Crash Fix LE (Recommended)</strong></span>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p>
					This plugin was created by me while debugging the crash. It always drops the numStatcNodes register what prevents crashing and also may increase FPS and loading speed. Can be found here: <a href="https://www.nexusmods.com/skyrim/mods/100672" rel="external nofollow">https://www.nexusmods.com/skyrim/mods/100672</a>
				</p>

				<p>
					Details about performance impact can be found here: <a href="https://www.nexusmods.com/skyrim/articles/52477" rel="external nofollow">https://www.nexusmods.com/skyrim/articles/52477</a>
				</p>
			</div>
		</div>

		<p>
			 
		</p>

		<p>
			<strong><span style="color:#f39c12;">Animation Loading Fix v1.1</span></strong>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p>
					This plugin since version 1.1 has it's own solution to fix the limit problem but with no performance impact. If you don't care about FPS and don't want to hold additional dll's you can use this solution. Can be found here <a href="https://www.nexusmods.com/skyrim/mods/98204" rel="external nofollow">https://www.nexusmods.com/skyrim/mods/98204</a> Get version 1.1.
				</p>
			</div>
		</div>

		<p>
			 
		</p>
	</div>
</div>

<p>
	 
</p>

<p style="text-align:center;">
	<span style="font-size:16px;"><span style="color:#f39c12;"><strong>Part III - Optional </strong></span></span>
</p>

<p>
	This part is not strictly required, however can improve overall game quality and/or stability under specific circumstances. 
</p>

<p>
	 
</p>

<p>
	<span style="color:#f39c12;"><strong><span> </span>HDT Physics Extensions Crash Fix</strong></span>
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p>
			If you're using HDT-PE (the mod that gives you physics for hair, body and other things) you may suffer from random CTD's on game loading. Or may not. Btw, I recommend to install the plugin if you're using HDT-PE because the problem can appear anytime as the cause is not yet completely clarified, especially why one suffers from it and another one not. My bet is it depends on physics preset, so if you gonna change it you probably risks to obtain the problem. 
		</p>

		<p>
			The plugin can be found here: <a href="https://www.loverslab.com/files/file/12301-hdt-physics-extensions-crash-fix/" rel="">https://www.loverslab.com/files/file/12301-hdt-physics-extensions-crash-fix/</a>
		</p>
	</div>
</div>

<p>
	 
</p>

<p>
	<span style="color:#f39c12;"><strong>Papyrus performance</strong></span>
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p>
			<span style="background-color:#262626;color:#bfbfbf;font-size:14px;">Do you have any problems with papyrus (e.g. big delays between scripted actions, something happens longer than intended, actions happens not in the right time)?</span>
		</p>

		<p>
			<span style="background-color:#262626;color:#bfbfbf;font-size:14px;">No</span>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p>
					Then you don't need to do anything.
				</p>
			</div>
		</div>

		<p>
			Yes
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p>
					<span style="background-color:#262626;color:#bfbfbf;font-size:14px;">It may happens because of the overloaded script engine or a bad designed mod. As tests shown, it shoudn't happen in a normal working game with well tested mods. Highly likely you have a mod that causes these problems or the mod where it happens have problems by itself. However, for overloaded script engine may help these options:</span>
				</p>

				<p>
					 
				</p>

				<pre style="background-color:#262626;border:1px solid #888888;color:#bfbfbf;font-size:14px;padding:2px;">


<span style="color:#ebe7e3;">[Papyrus]
fUpdateBudgetMS=1.6
fExtraTaskletBudgetMS=1.6
fPostLoadUpdateTimeMS=1000.0
iMaxMemoryPageSize=8192
iMinMemoryPageSize=256
iMaxAllocatedMemoryBytes=67108864
bEnableLogging=0
bEnableTrace=0
bLoadDebugInformation=0
bEnableProfiling=0</span></pre>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					Put them to the <span style="color:#ecf0f1;"><u><strong>Documents/My Games/Skyrim/Skyrim.ini</strong></u></span>
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					It will not cure your problems, but may smooth them. 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					 
				</p>

				<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
					If you want to continue configuring<span> </span><span style="color:#ecf0f1;"><u><strong>Skyrim.ini</strong></u></span><span> </span>I recommend to use this guide: <a href="https://wiki.step-project.com/Guide:Skyrim_Configuration_Settings" rel="external nofollow" style="background-color:transparent;color:#87b8d7;">https://wiki.step-project.com/Guide:Skyrim_Configuration_Settings</a> But be careful and make backup before any changes. 
				</p>
			</div>
		</div>

		<p>
			 
		</p>
	</div>
</div>

<p>
	 
</p>

<p>
	<span style="color:#f39c12;"><strong>High FPS Patches</strong></span>
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p>
			This section mainly designed for those who want to play with uncapped fps, but will be useful for everybody. 
		</p>

		<p>
			 
		</p>

		<p>
			<span style="color:#f39c12;"><strong>Havok Fix</strong></span>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p>
					Havoc (physic engine) should be synchronized with frame rate, but it's static by default and can be configured with fMaxTime option. By default it's configured to work with 60 fps, if your fps goes above or below physic and/or sound glitches may appear. Havok Fix Plugin was created to synchronize frame rate with Havok update time what prevents these glitches. Can be found here: <a href="https://www.nexusmods.com/skyrim/mods/91598" rel="external nofollow">https://www.nexusmods.com/skyrim/mods/91598</a>
				</p>

				<p>
					<span style="background-color:#262626;color:#c0392b;font-size:14px;"><strong>Warning:</strong></span><span style="background-color:#262626;color:#bfbfbf;font-size:14px;"> may impact on fps a</span>s it works every frame. To lower the performance impact I recommend to set fixed update time with '<strong>freq</strong>' option. I play with 50. 
				</p>
			</div>
		</div>

		<p>
			 
		</p>

		<p>
			<strong><span style="color:#f39c12;">BugFixPlugin</span></strong>
		</p>

		<div class="ipsSpoiler" data-ipsspoiler="">
			<div class="ipsSpoiler_header">
				<span>Spoiler</span>
			</div>

			<div class="ipsSpoiler_contents">
				<p>
					<span style="background-color:#262626;color:#bfbfbf;font-size:14px;">As the name mentions, it fixes several game bugs. Also option FixVerticalLookSensitivity fixes the annoying camera sensity bug with high fps. Mod can be found here: </span><a href="https://www.nexusmods.com/skyrim/mods/76747" rel="external nofollow" style="background-color:#262626;color:#87b8d7;font-size:14px;">https://www.nexusmods.com/skyrim/mods/76747</a>
				</p>
			</div>
		</div>

		<p>
			 
		</p>
	</div>
</div>

<p>
	 
</p>

<p>
	<strong><span style="color:#f39c12;">Windows 7 users warning</span></strong>
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
			If you're a user of Windows 7 x64 your 32 bit Skyrim cannot work with more than 2GB (by default). It caused by<span> </span><a href="https://en.wikipedia.org/wiki/Executable_space_protection#Windows" rel="external nofollow" style="background-color:transparent;color:#87b8d7;">Data Execution Prevention</a> which doesn't work properly with LAA (Large Adress Aware) flag in this version of Windows. To allow Skyrim consume up to 4GB you should disable DEP for exact this application. You can easily do this following this instruction: <a href="https://www.online-tech-tips.com/windows-xp/disable-turn-off-dep-windows/" rel="external nofollow" style="background-color:transparent;color:#87b8d7;">https://www.online-tech-tips.com/windows-xp/disable-turn-off-dep-windows/</a>
		</p>

		<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
			It is very important for Skyrim to have enough memory. If at some point the game engine will not be able to find enough memory it will simply crash. 
		</p>
	</div>
</div>

<p>
	 
</p>

<p>
	<span style="color:#f39c12;"><strong>Critter Spawn Fix</strong></span>
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p>
			<span style="background-color:#262626;color:#bfbfbf;font-size:14px;">Vanilla critter spawn in Skyrim has very poor performance and architecture, it damages our papyrus viability and may lead to problems in some cases, especially for heavy scripted skyrim. Completely redone critter spawn can be found here: </span><a href="https://www.nexusmods.com/skyrim/mods/76139" rel="external nofollow" style="background-color:#262626;color:#87b8d7;font-size:14px;">https://www.nexusmods.com/skyrim/mods/76139</a>
		</p>
	</div>
</div>

<p>
	 
</p>

<p style="text-align:center;">
	<span style="font-size:16px;"><span style="color:#f39c12;"><strong>Dangerous Mods</strong></span></span>
</p>

<p>
	<strong><span style="color:#f39c12;">PlayerSuccubusQuest</span> </strong>(<a href="https://www.loverslab.com/files/file/667-psq-playersuccubusquest-for-sexlab/" rel="">https://www.loverslab.com/files/file/667-psq-playersuccubusquest-for-sexlab/</a>) - cum inflation feature of this mod produces infinite threads what eventually breaks papyrus script engine together with your game save. Disable this feature if you want to play the mod safety. 
</p>

<p>
	 
</p>

<p>
	<span style="color:#f39c12;"><strong>Simply Knock</strong></span> &amp; <span style="color:#f39c12;"><strong>StorageUtil</strong> </span>(<a href="https://www.nexusmods.com/skyrim/mods/73236" rel="external nofollow">https://www.nexusmods.com/skyrim/mods/73236</a>) - this mod uses StorageUtil on gamesave loading to get configuration with relative access "../SimplyKnockData/Common.json". The path is converting by StorageUtil with codecvt function which in that case may work incorrect on Windows OS and access null ptr what crashes the game. It is not really a Simply Knock or PapyrusUtil problem, however are triggering by them. Crash is platform dependent and not guaranteed to pop up for everybody.
</p>

<p>
	 
</p>

<p>
	<span style="color:#f39c12;"><strong>Dragonborn In Distress</strong></span> (<a href="https://www.loverslab.com/files/file/8215-dragonborn-in-distress/" rel="">https://www.loverslab.com/files/file/8215-dragonborn-in-distress/</a>) - may cause CTD while save attempt in active quest stage for unknown reasons (I didn't investigate it). Since ver 2.03+ seems to be fixed. 
</p>

<p>
	 
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<span style="font-size:16px;"><span style="color:#f39c12;"><strong>Recommendations</strong></span></span>
</p>

<p style="background-color:#1c1c1c;color:#bcbcbc;font-size:14px;">
	-<span> </span><strong><u>Don't alt-tab from the game.</u></strong><span> </span>It's simply not supported by Bethesda even with vanilla game. But if you really need to alt-tab at least make a savegame, because returning back you may meet a CTD. 
</p>

<p style="background-color:#1c1c1c;color:#bcbcbc;font-size:14px;">
	-<span> </span><strong><u>Do not disable your mods from load order during game time.</u></strong><span> </span>It may break your scripts, quest and gamesave completely even if clean it up.
</p>

<p style="background-color:#1c1c1c;color:#bcbcbc;font-size:14px;">
	-<span> </span><strong><u>Always make backups.</u></strong><span> </span>For everything. For example some mods replace vanilla scripts and if you turn off a mod like this it may break the script completely. So it is very important to do a proper clean up and restoration after deletion. Backups saved my Skyrim many times.
</p>

<p style="background-color:#1c1c1c;color:#bcbcbc;font-size:14px;">
	-<span> </span><strong><u>Keep your main save away from new mods and even mod updates.</u><span> </span></strong>You cannot know will you like this mod or not, will it bring any problems and so on. If you want to try a new mod i recommend to start a new game and try it out. And after some time if everything looks good include the mod to your main save.
</p>

<p style="background-color:#1c1c1c;color:#bcbcbc;font-size:14px;">
	-<span> </span><strong><u>If you pack your mods into BSA be careful with seq files.</u><span> </span></strong>BSA archive should have proper flags if contains a seq file. Otherwise it will be unable read and break the mod. Furthermore, new game will be required even if you fixed it.
</p>

<p style="background-color:#1c1c1c;color:#bcbcbc;font-size:14px;">
	-<span> </span><u><strong>If you want to try a new mod, at first better to put it at the end of the load order.</strong></u> If you do it this way the new mod will override everything it needs and it will be less chances to break something for the new mod because of incompatibility with others. However, with this action you still can break old mods in case of incompatibility.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	<span style="font-size:16px;"><span style="color:#f39c12;"><strong>Useful</strong></span></span>
</p>

<p>
	<strong>Game paths</strong>
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
			Papyrus logs: <span style="color:#ecf0f1;"><u><strong>Documents/My Games/Skyrim/Logs/Script</strong></u></span>
		</p>

		<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
			SKSE crashdumps: <span style="color:#ecf0f1;"><u><strong>Documents/My Games/Skyrim/SKSE/Crashdumps</strong></u></span>
		</p>

		<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
			Regedit Skyrim installation path: <span style="color:#ecf0f1;"><u><strong>HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Bethesda Softworks/Skyrim</strong></u></span>
		</p>

		<p style="background-color:#262626;color:#bfbfbf;font-size:14px;">
			Loadorder:<span> </span><span style="color:#ecf0f1;"><u><strong>%AppData%/Local/Skyrim</strong></u></span>
		</p>
	</div>
</div>

<p>
	 
</p>

<p>
	<strong>Links</strong>
</p>

<p style="background-color:#1c1c1c;color:#bcbcbc;font-size:14px;">
	Wide collection of guides and useful links to solve many game related problems by<span> </span><a contenteditable="false" data-ipshover="" data-ipshover-target="https://www.loverslab.com/profile/457993-worik/?do=hovercard" data-mentionid="457993" href="https://www.loverslab.com/profile/457993-worik/" rel="" style="color:#ffffff;font-size:12.6px;padding:0px 5px;">@worik</a> <a href="https://www.loverslab.com/blogs/entry/6768-patchwork-how-do-i-fix-this-and-that-a-link-collection/" rel="" style="background-color:transparent;color:#87b8d7;">https://www.loverslab.com/blogs/entry/6768-patchwork-how-do-i-fix-this-and-that-a-link-collection/</a>
</p>

<p style="background-color:#1c1c1c;color:#bcbcbc;font-size:14px;">
	 
</p>

<p style="background-color:#1c1c1c;color:#bcbcbc;font-size:14px;">
	Well done blog about how to properly setup and mod the game by<span> </span><a contenteditable="false" data-ipshover="" data-ipshover-target="https://www.loverslab.com/profile/1173840-donttouchmethere/?do=hovercard" data-mentionid="1173840" href="https://www.loverslab.com/profile/1173840-donttouchmethere/" rel="" style="color:#ffffff;font-size:12.6px;padding:0px 5px;">@donttouchmethere</a> <a href="https://www.loverslab.com/blogs/entry/7521-conglomerate-01-basic-setup-for-modifing-skyrim-le-well-my-skyrim-got-messy-now-i-have-to-clean-it-up-so-i-thought-to-myself-why-not-start-a-blog-about-that/" rel="" style="background-color:transparent;color:#87b8d7;">https://www.loverslab.com/blogs/entry/7521-conglomerate-01-basic-setup-for-modifing-skyrim-le-well-my-skyrim-got-messy-now-i-have-to-clean-it-up-so-i-thought-to-myself-why-not-start-a-blog-about-that/</a>
</p>]]></description><guid isPermaLink="false">10715</guid><pubDate>Sun, 23 Feb 2020 17:18:00 +0000</pubDate></item></channel></rss>
