This is a script issue that's bugging me on my STEP install, though it could likely not have anything to do with STEP itself, I've had no luck Googling answers to this one.
The popup below randomly appear as I explore Solstheim. Its a Box that I can press OK on and continue, it doesnt cause always cause CTDs, though it did on a couple occasions, but its slightly irritating either way. I have a substantial load order, mostly STEP mods, but they're all carefully BOSS'd and all. Googling the error says this can be caused by duplicate Skyrim.esm entries in plugins.txt, but I checked my plugins.txt (the one Mod Organizer generates), and the core esm is only there once (though there are also the unofficial patches ofc). The only change I've done to any of the ESMs is cleaning the Update, and the Official DLCs as recommanded.
Just want to know if this rings a bell to anybody :)
WETriggerScript < (********)>]WARNING: getMyHoldFactionControllerMarker() myHoldOwner propertyexpected to be 1 or 2, instead have:-1
Additional info; the source for that script is in scripts/source and shows the script has to do with creating context-appropriate random events for the player. The portion of the script generating the errors seems to be the following... and given neither Imperials or Stormcloaks are on Solstheim to my knowledge, well, I'm not sure this should be triggering at all...
ObjectReference Function getMyHoldFactionControllerMarker()
{Returns the xmarker associated with the Civil War faction currently controlling myHold.}
if myHoldOwner == CWs.iImperials
 if myHoldIsContested
  return WEHoldImperialContestedRef
 Else
  return WEHoldImperialRef
 EndIf
Â
elseif myHoldOwner == CWs.iSons
 if myHoldIsContested
  return WEHoldSonsContestedRef
 Else
  return WEHoldSonsRef
 EndIf
Â
Else
 debug.MessageBox(self + "WARNING: getMyHoldFactionControllerMarker() myHoldOwner property expected to be 1 or 2, instead have:" + myHoldOwner)
;Â Â debug.trace(self + "WARNING: getMyHoldFactionControllerMarker() myHoldOwner property expected to be 1 or 2, instead have:" + myHoldOwner, 2)
Question
Valamyr
This is a script issue that's bugging me on my STEP install, though it could likely not have anything to do with STEP itself, I've had no luck Googling answers to this one.
The popup below randomly appear as I explore Solstheim. Its a Box that I can press OK on and continue, it doesnt cause always cause CTDs, though it did on a couple occasions, but its slightly irritating either way. I have a substantial load order, mostly STEP mods, but they're all carefully BOSS'd and all. Googling the error says this can be caused by duplicate Skyrim.esm entries in plugins.txt, but I checked my plugins.txt (the one Mod Organizer generates), and the core esm is only there once (though there are also the unofficial patches ofc). The only change I've done to any of the ESMs is cleaning the Update, and the Official DLCs as recommanded.
Just want to know if this rings a bell to anybody :)
Additional info; the source for that script is in scripts/source and shows the script has to do with creating context-appropriate random events for the player. The portion of the script generating the errors seems to be the following... and given neither Imperials or Stormcloaks are on Solstheim to my knowledge, well, I'm not sure this should be triggering at all...
5 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now