Jump to content

What mod is causing these popups?


Recommended Posts

Posted

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?

20221129004627_1.jpg

20221129004729_1.jpg

20221129004631_2.jpg

20221129004631_1.jpg

20221129004612_1.jpg

20221129004622_1.jpg

Posted

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.

 

Posted (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 by Incubusbul
Posted (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 by ttts1
Posted

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.

 

Posted
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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...