MiniMania1 Posted November 29, 2022 Posted November 29, 2022 I just started a new playthrough after updating some mods and I started receiving these popup messages stuck in an infinite loop. (I can't move they keep popping up one after the other in an infinite loop, I literally sat here spamming the button for a full 2 minutes and they were still happening. Clearly a mod is broken. Anyone got any idea which one it is?
shrtjsrtj Posted November 29, 2022 Posted November 29, 2022 The Dollmaker is from Deviously Cursed Loot and that looks like quest dialogue from one of the quests from that, not sure which one. It looks like you had a collar equipped which may have started it. After waiting for mods to install you need to save/reload for Cursed Loot to install, maybe it's just that that's causing problems.
Incubusbul Posted November 29, 2022 Posted November 29, 2022 (edited) I opened Deviously Cursed Loot.esp with xTranslator, but couldn't find any of these lines in there. Could you share your modlist? Edited November 29, 2022 by Incubusbul
ttts1 Posted November 29, 2022 Posted November 29, 2022 (edited) Never used it so don't know, but there's mod called Laura's Bondage Shop. Are you sure it isn't that one, considering the name used in the pop up? Edited November 29, 2022 by ttts1
traison Posted November 29, 2022 Posted November 29, 2022 You can have xEdit find them for you: { Find message } 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 <> 'MESG' then Continue; Search(e) end; end; end; procedure Search(e: IInterface); var m: string; begin m := GetElementNativeValues(e, 'DESC'); if pos('Dollmaker', m) > 0 then AddMessage(IntToHex(GetLoadOrderFormID(e), 8)); end; end.
Laura Posted November 29, 2022 Posted November 29, 2022 4 hours ago, ttts1 said: Never used it so don't know, but there's mod called Laura's Bondage Shop. Are you sure it isn't that one, considering the name used in the pop up? It's not from my mod. But I think I remember hearing about a Laura in Cursed Loot which caused some confusion before. And the Dollmaker is also from Cursed Loot. So it's probably Cursed Loot. 1
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