Anunya Posted March 1, 2023 Posted March 1, 2023 Hey does anyone know of easy fixes to the random AI aggro bug? I'm happily doing the AA adventure returning with Sylgja's things to Anneke in Darkwater crossing and now - for no apparent reason - random NPCs attack me. I've had Vigilants of Stendarr, random Argonian travellers, and the Miners in the Goldenrock Mine (including Anneke, which is inconvenient when I'm trying to talk to her) instantly aggro on me. I don't think I've done killed any chickens or otherwise done wild things, and I don't have a bounty. The guards and some other civilians are leaving me alone as well. I've had similar things happen in other playthroughs and it's pretty annoying... Does anyone know of a way to fix this?
anjenthedog Posted March 1, 2023 Posted March 1, 2023 Immersive encounters by any chance? (or immersive creatures). In my experience, one or both introduce some NPCs that can be "easily triggered"
Anunya Posted March 1, 2023 Author Posted March 1, 2023 (edited) I do have that in my modlist. That might very well be it... though I don't know why Anneke got swept up in it as well. EDIT: wait no, I took that out and it's not in my current mod list =/ I do have Populated Skyrim though. Edited March 1, 2023 by Anunya
traison Posted March 1, 2023 Posted March 1, 2023 First guess, you have a cloak that applies spells to npcs. May even be a non-hostile spell. Same reason why you can't heal some friendly npcs - they consider it hostile and attack you. 1
Anunya Posted March 1, 2023 Author Posted March 1, 2023 26 minutes ago, traison said: First guess, you have a cloak that applies spells to npcs. May even be a non-hostile spell. Same reason why you can't heal some friendly npcs - they consider it hostile and attack you. Is there an easy way to see if that's the case? And to dispel that if necessary?
Anunya Posted March 1, 2023 Author Posted March 1, 2023 My current action is to use the console to COC to Whiterun - no one attacked me there. I'm going to do other stuff for a couple of in-game days and COC back and see if anything's changed.
traison Posted March 1, 2023 Posted March 1, 2023 (edited) 23 minutes ago, Anunya said: Is there an easy way to see if that's the case? I'd make an xedit script to find me all cloak spells that are not in the vanilla game. Depends on whether or not you consider that easy. Edit: Like this. Just ignore the ones from official masters. { Find cloak spells } unit UserScript; function Initialize: integer; var i: integer; j: integer; f: IInterface; e: IInterface; sig: string; begin // iterate over loaded plugins for i := 0 to Pred(FileCount) do begin f := FileByIndex(i); for j := 0 to Pred(RecordCount(f)) do begin e := RecordByIndex(f, j); sig := Signature(e); if sig <> 'MGEF' then Continue; Search(e) end; end; end; procedure Search(e: IInterface); var m: string; begin m := GetElementEditValues(e, 'Magic Effect Data\DATA - Data\Archtype'); if m = 'Cloak' then AddMessage(IntToHex(GetLoadOrderFormID(e), 8)); end; end. Edited March 1, 2023 by traison
Anunya Posted March 1, 2023 Author Posted March 1, 2023 Heh... that's probably a bit advanced for me Thanks though!
anjenthedog Posted March 2, 2023 Posted March 2, 2023 (edited) 4 hours ago, Anunya said: I do have Populated Skyrim though. Not personally familiar Maybe a widenet search like "skyrim special edition populated skyrim aggressive npc" I got a few hits from that one that seem related. Or maybe just "possibly helpful" idk. for instance, one mentioned something about bounties, but I suspect you're aware of those general conditions as triggers. best wishes, Edited March 2, 2023 by anjenthedog 1
Anunya Posted March 2, 2023 Author Posted March 2, 2023 Yeah, I don't have any outstanding bounties or anything like that. The guards leave me alone completely.
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