Openai/693bd41e-0474-8012-b7b1-5944e3f5380a
This conversation was exported from ChatGPT[1]
gpt-5-1[edit | edit source]
User: hi, ihave a skyrim crash log, can you help ?[edit | edit source]
hi, ihave a skyrim crash log, can you help ?
Assistant: Sure — I can help![edit | edit source]
Sure — I can help! Please paste the crash log (or the relevant part of it) here, and I’ll analyze it to figure out what’s causing the issue and what you can do to fix it.
User: here the log file[edit | edit source]
here the log file
Assistant: Here’s a clear breakdown of your crash log and what’s most likely causing the crash, plus what to do next.[edit | edit source]
Here’s a clear breakdown of your crash log and what’s most likely causing the crash, plus what to do next.
✅ Summary of the Crash[edit | edit source]
Your crash is an EXCEPTION_ACCESS_VIOLATION, meaning the game tried to read or execute bad memory — typical of plugin issues.
The important lines are these:
Most important culprit in the stack:[edit | edit source]
po3_SpellPerkItemDistributor.dll (SPID)
DistributePCLevelMult.cpp:29Secondary modules also involved:[edit | edit source]
- hdtSMP64.dll (Faster HDT-SMP)
- BetterThirdPersonSelection.dll
- skse64_1_6_1170.dll
But the crash originates inside SPID, during a Revert() call (usually triggered on load, unload, or cell change).
This very strongly points to:
❗ PROBABLE CAUSE[edit | edit source]
A bad / malformed / incompatible SPID distribution file (*.ini inside Data/SKSE/Plugins/SpellPerkItemDistributor)
This happens when:
- A distribution rule references a form that does not exist.
- A mod was uninstalled, but its SPID entries still try to distribute spells/perks/items.
- A SPID INI file has a syntax error.
- A form is from the wrong version of the game (AE version mismatch).
- A leveled distribution tries to handle an actor improperly (hence “PlayerLeveledActor::Revert”).
🔍 Why SPID is the primary suspect[edit | edit source]
Your call stack points directly to SPID code:
SPID → Distribute::PlayerLeveledActor::RevertSPID usually crashes during:
- loading a save
- changing cells
- distributing items to mod-added actors
Most crashes occur because an INI file tries to give perks/spells to invalid actor types or uses broken FormIDs.
🛠️ How to Fix the Crash[edit | edit source]
Follow these steps:
1️⃣ Check your SPID .ini files[edit | edit source]
Path:
Data/SKSE/Plugins/SpellPerkItemDistributor/*.iniLook for:
- Missing commas
- Wrong syntax
- Blank entries
- FormIDs that do not exist (most common)
If you want, upload the SPID folder or the .ini files and I can inspect them.
2️⃣ Check if you recently uninstalled a mod[edit | edit source]
If you removed a mod that SPID distributes things to or from, SPID will crash when it tries to load missing forms.
Common offenders:
- NPC replacers
- Perk overhauls
- Spell packs
- Mods that add custom races or followers
3️⃣ Update to latest versions[edit | edit source]
Make sure the following are updated for Skyrim SE/AE 1.6.1170:
- SPID
- Faster HDT-SMP
- Better Third Person Selection
An outdated plugin can cause bad memory access.
4️⃣ Try temporarily disabling SPID[edit | edit source]
To confirm the culprit:
- Move the whole folder:
Data/SKSE/Plugins/SpellPerkItemDistributor/to somewhere else.
- Launch the game.
If the crash disappears → 100% guaranteed SPID rule problem.
🧪 If you want, I can pinpoint the exact broken rule[edit | edit source]
Just upload:
✅ Your SpellPerkItemDistributor folder or ✅ All .ini files inside it
I’ll scan them for broken FormIDs and errors.
Would you like me to check the SPID distribution files?
References[edit | edit source]
- ↑ "Skyrim crash log help". ChatGPT. Retrieved 2025-12-13.