Greetings, I'm not sure about this yet, but entering Sadrith Mora (actually, exiting Wolverine Hall), I got an expression error warning about slaveScript:
"Script Error: EXPRESSION in slaveScript
Right eval"
I have lots of mods, but I think the only mod that replaces slaveScript is NPC Functionality (I'm using the modified .esp from Hrnchamd, but the same thing appears in both versions). Looking in slaveScript, I see the following line:
If ( GetCurrentAIPackage ! 3 )
Shouldn't that be:
If ( GetCurrentAIPackage != 3 )
Or is it an acceptable variant?
Thanks in advance for any insight.
Edit:
Well, I fixed that conditional expression to use "!=" in the three scripts (dancingGirlScript, slaveScript, and vedamDrenScript), and I no longer get the error. So maybe that was it.
Edit 2:
Well, after the above change, I have a new problem. Now when I go to Sadrith Mora, the 3 slaves Ereel-Lei, Milos, and Qa'Dar start following me around everywhere. If I remove "NPC Functionality.esp" from my load list, they do not appear and start following me.
I wonder... Would this work, maybe? Changing this:
If ( GetCurrentAIPackage ! 3 )If ( GetHealth < 1 ) ReturnEndifEndif
To this:
If ( GetCurrentAIPackage != 3 ) ReturnElseif ( GetHealth < 1 ) ReturnEndif
Just a hunch, but it'd be better to know what he was trying to do there.
Until we have a solid fix for this, is it safe to just remove those three scripts, and the follow scripts in "noLore" (I know I'll never use them)?