Se 1.5.97 !!hot!! - Creation Kit Skyrim
To use the Creation Kit Skyrim Special Edition (SE) version 1.5.97
, you must ensure the version of the tool matches your game build. The current version of the Creation Kit on Steam is designed for the Anniversary Edition (1.6+), which is inherently incompatible with 1.5.97 unless modified. Getting the Correct Version
You can obtain a compatible version by either downloading specific older files through the Steam Console or using a downgrade patcher. Steam Community Steam Console Method Open the Windows "Run" dialog ( ) and enter steam://open/console To download the necessary files for version
(which works for 1.5.97), enter these commands into the Steam console: download_depot 1946180 1946182 5099162879680505807 download_depot 1946180 1946183 1633303557398589581 Manual Installation
: Once downloaded, find the files in your Steam content folder (e.g., ...\Steam\steamapps\content\app_1946180 ) and copy them into your main Skyrim Special Edition game directory, overwriting existing files. Essential Fixes and Setup
The standard Creation Kit is notoriously buggy and often fails to load on 1.5.97 without specific tweaks: Creation Kit Downgrade Patcher
: If you have the newest Steam version of the CK, you must run the Creation Kit Downgrade Patcher to make it compatible with 1.5.97. SSE CK Fixes : It is highly recommended to install SSE Creation Kit Fixes or its successor, Creation Kit Platform Extended , to drastically reduce load times and fix common crashes. Enable Multiple Masters CreationKitCustom.ini in your game folder and add the following under to allow the kit to load multiple master files ( ) simultaneously: bAllowMultipleMasterLoads=1 Use code with caution. Copied to clipboard
For a visual guide on the installation and essential configuration steps: Creation Kit Installation for SE & AE Darkfox127 YouTube• 9 May 2023
To successfully use the Creation Kit (CK) with Skyrim Special Edition 1.5.97, you must synchronize the CK version with your game version, as modern Steam downloads provide a 1.6+ version that is incompatible with the older 1.5.97 executable. Essential Setup for 1.5.97 creation kit skyrim se 1.5.97
Because current Steam versions of the Creation Kit are designed for the "Anniversary Edition" (1.6+), users on 1.5.97 must use a "downgraded" version of the tool.
Acquiring the Correct Version: Download the modern Creation Kit from the Steam Store.
Applying the Patcher: Use the Creation Kit Downgrade Patcher to revert the CreationKit.exe to version 1.5.73, which is the stable match for Skyrim SE 1.5.97.
Manual Depot Download (Alternative): If the patcher fails, you can download the older depot directly via the Steam Console (Win+R -> steam://open/console) using:download_depot 1946180 1946182 5099162879680505807. Critical Fixes & Optimization
Vanilla Creation Kit is notorious for crashes and long load times. These mods are considered mandatory for a functional experience:
SSE Creation Kit Fixes: This is the most important plugin. It fixes numerous engine bugs, allows the CK to load much faster, and prevents many common crashes.
Creation Kit Platform Extended: Provides further stability improvements and advanced features for script handling.
Creation KIT Lazy Tweak: Offers pre-configured .ini files specifically tailored for the 1.5.97 environment to save you from manual configuration. Manual Configuration (CreationKit.ini) To use the Creation Kit Skyrim Special Edition
To enable standard modding features, you must edit the CreationKitCustom.ini (or CreationKit.ini) in your Skyrim folder:
Getting Creation Kit Working Again After December 2023 Update MO2
Here’s a draft write-up for a guide or modding reference focused on Skyrim Special Edition version 1.5.97 and the Creation Kit compatible with that build.
You can adapt this for a mod page, a forum post (e.g., Nexus or Reddit), or internal team documentation.
Performance and stability tips
- Avoid large numbers of active scripts and high-frequency OnUpdate events. Use event-driven logic.
- Keep form references local when possible; avoid GetPlayerRef() abuse if not necessary.
- Test memory-heavy assets (large textures/meshes) for load times and VRAM use. Compress textures when feasible.
Key features to use (and common gotchas)
- Worldspaces & Cells: Large cell edits can increase memory use and save bloat. Place persistent references only where needed.
- Scripts (Papyrus): Scripts compiled against a specific runtime can behave differently across versions. Keep scripts modular and minimize heavy OnUpdate loops; use event-driven design.
- Leveled Lists: Be careful adding powerful items early in leveled lists—balance and playtesting matter.
- Navmeshing & AI Packages: Navmesh needs to match the cell layout; moving persistent objects can break AI behavior.
- References & Form IDs: Avoid hard-coding form IDs from other mods; use script properties or dynamic lookup when possible to preserve compatibility.
- Save game compatibility: Adding/removing records referenced in saved games can cause crashes or orphaned refs—document changes for users.
Actionable prerequisites
- Install Skyrim Special Edition matching 1.5.97. Ensure your game is updated to that build or use a mod manager/launcher that can lock or run that version.
- Obtain the Creation Kit that matches this build (typically via Bethesda.net launcher historically). Confirm the Creation Kit executable references the same data files as your game.
- Back up: copy your Data folder and any working mods before major edits.
- Familiarize yourself with mod tools: a mod manager (Vortex/Nexus Mod Manager), SSEEdit (xEdit), LOOT (for load order), and a text editor (Notepad++/VS Code) for scripts.
Configuration (INI Tweaks for 1.5.97)
Edit CreationKit.ini (in Documents/My Games/Skyrim Special Edition) or the one in the Skyrim root folder:
[General] bAllowMultipleMasterFiles=1 bAllowMultipleEditors=0 bUseMultibounds=0 SLocalSavePath=Saves\CK\[Archive] bInvalidateOlderFiles=1 SInvalidationFile=ArchiveInvalidation.txt
[Papyrus] bEnableLogging=1 bEnableTrace=1 bLoadDebugInformation=1
These settings prevent common errors and enable modding-friendly behavior.
Pitfall 1: "Multiple Master Files Selected" Error
You try to load your plugin alongside multiple master files (e.g., Skyrim.esm, Update.esm, Dawnguard.esm, and a third-party master). The CK refuses.
Fix: The bAllowMultipleMasterLoads=1 line above usually fixes this. If not, use Wrye Bash to temporarily "ghost" unnecessary masters, or use SSE Creation Kit Fixes (a community DLL plugin for CK 1.5.97).
Verifying Compatibility
After setting up:
- Launch
SkyrimSE.exe(1.5.97) once to generate INIs. - Launch
CreationKit.exevia SKSE loader (optional but recommended:skse64_loader.exe -editor). - Load any plugin and check for errors in the CK log (
Documents/My Games/Skyrim Special Edition/Logs/CreationKit.log).
B. SSE Creation Kit Fixes (by meh321)
Another vital DLL plugin. It fixes the "string count" limit, which causes large mods to crash on load. Make sure you install the version that matches your CK executable date (late 2019/early 2020 for 1.5.97).
Critical Patching (The "Paper" Fix)
The vanilla Creation Kit provided by Steam for version 1.5.97 has a memory limitation. It will crash if you try to load more than one master file (e.g., trying to load Skyrim.esm and Update.esm together).
You must apply the Creation Kit Memory Patch:
- Download xEdit (a modding tool used for cleaning).
- Run
SSEEdit.exe. - It will apply necessary memory patches to the Creation Kit executable automatically upon first run, or you may need to manually edit the
CreationKit.inifile to increase the allocated memory.- Alternatively: Many modders use a community-patched version of the CK, but sticking to the official Steam version patched via ini edits is standard for 1.5.97.
The INI Edit:
Navigate to your Skyrim SE folder and open (or create) CreationKit.ini. Add the following under [General]: Performance and stability tips
[General]
bAllowMultipleMasterLoads=1








