Welcome to the AFK Mods bug tracker. In order to report an issue, you need to have a VALIDATED account to post one. Once you have followed the link the registration email sent you, please select a project from the drop down menu below. Select “Open New Issue” and fill out the form with as many details as possible.

Please also consider sending your bug report to Bethesda if you are reporting on an issue with Skyrim Special Edition, Fallout 4, Starfield, or Oblivion Remastered. Doing so will help everyone on all platforms.

Issue Data
Status: New
Issue Type: Bug Report
Project: Unofficial Skyrim Special Edition Patch
Component: Unofficial Skyrim Special Edition Patch
Category: Papyrus
Assigned To: Nobody
Platform: PC
Severity: Low
Votes: 1
Watching: N/A
Opened By lilebonymace on Mar 16, 2026 12:23 pm

Issue #36359: potential issues due to properties LinkCustom09/LinkCustom10 added to LvlPredatorScript by USSEP

 
USSEP adds properties LinkCustom09 and LinkCustom10 to lvlPredatorScript to replace Enable Parent functionality.
There are two problems:
1) USSEP doesn't fill these properties on DLC2LvlAnimalMountainSnowPredator [NPC_:0403A9C1] and DLC2LvlAnimalForestPredator [NPC_:0403A9C2]. There is no check in the script for whether these properties are filled or not:
ObjectReference EnableParent = GetLinkedRef(LinkCustom09)
ObjectReference InverseEnableParent = GetLinkedRef(LinkCustom10)

Therefore when they are not filled, it retrieves GetLinkedRef(None) for both, which will return ref linked with no keyword, like those XMarkers, and will proceed using it as Enable Parent.
2) The same problem can happen in mods that use lvlPredatorScript without these properties filled. An example is Beyond Skyrim - Bruma: CYRLvlAnimalForestPredator [NPC_:0B04933E], CYRLvlAnimalSwampPredator [NPC_:0B04933F], CYRLvlAnimalPlainsPredator [NPC_:0B049340].

Suggested fix:
in the script replace
ObjectReference EnableParent = GetLinkedRef(LinkCustom09)
ObjectReference InverseEnableParent = GetLinkedRef(LinkCustom10)

with
ObjectReference EnableParent = None
ObjectReference InverseEnableParent = None
if LinkCustom09
	EnableParent = GetLinkedRef(LinkCustom09)
endif
if LinkCustom10
	InverseEnableParent = GetLinkedRef(LinkCustom10)
endif

AND fill properties LinkCustom09 and LinkCustom10 on DLC2LvlAnimalMountainSnowPredator [NPC_:0403A9C1] and DLC2LvlAnimalForestPredator [NPC_:0403A9C2].