Skyrim Special Edition
0 of 0

File information

Last updated

Original upload

Created by

wankingSkeever

Uploaded by

wSkeever

Virus scan

Safe to use

Tags for this mod

About this mod

Fixes Neloth's Experimental Subject Quest (DLC2TTR4a) getting stuck

Requirements
Permissions and credits
Donations

Description
I encountered bug where DLC2TTR4a got stuck on stage 100. I got the negative side effect of Neloth's spell, but the quest did not advance. So I looked at Bethesda's script, and it looks pretty terrible: it is looping every 5 seconds to check if the quest can advance to the next stage. I guess at some point this loop exited without advancing, breaking the quest.

For the fix, I didn't change their loop logic. I just added a failsafe check OnLocationChange to advance the quest if necessary. I just added this bit to DLC2TTR4aPlayerScript:
Event OnLocationChange(Location akOldLoc, Location akNewLoc)
if GetOwningQuest().GetStage() == 100
OnUpdate()
endIf
EndEvent
If your DLC2TTR4a quest is stuck, you can install this mod, and it will retroactively advance the quest as soon as you go to a new location. You can install or uninstall this at any time before, during, or after the quest.

Installation/Uninstallation/Update
Whenever

FAQ
Q: I didn't get this issue
A: that's good. You don't need this then