Jump to content

Recommended Posts

That almost reads like one of those old telegraph messages (Stop)

 

Anyhow, I'd recommend you search through all your mods filtering for *.psc and *.es* searching for 1 or 2 words of that message you're seeing. Notepad++ can do this easily.

 

search.jpg.aeb987f1395cb2a43ed5f14287883ec6.jpg

Link to comment

Notepad++

 

You can use this xEdit script as well, to print the formid of the MESG record:

{
  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('You loose all sense', m) > 0 then
        AddMessage(IntToHex(GetLoadOrderFormID(e), 8));
end;

end.

 

Link to comment

The messages tab will show output like this:

[00:00] Start: Applying script "..."
000D056A
0010D9AF
[00:20] Done: Applying script "...", Elapsed Time: 00:20

 

In that example, those 2 MESGs contained the word "Book". Copy the formid you get, into the formid box in the top left corner and you have your answer.

Edited by traison
Link to comment

What do you mean "game freeze"? Focus on one problem at a time otherwise this gets out of hand quickly.

 

The script automatically looks through all plugins loaded in xEdit, so load your entire load order and run the script. It will take a long time though.

 

Edit: 20 seconds when only Skyrim.esm was loaded in my example. So expect the script to run for 10 minutes if you have 100 mods. Why so slow? Maybe my script is bad, I don't like pascal. Still faster than looking through everything manually.

 

If the script still can't find anything, adjust the text within the apostrophes and run it again:

'You loose all sense' -> 'march'

Edited by traison
Link to comment

THE freeze was solve because of Femrin but the message remains i also got resaver i not sure that will help any I  got alot mods  total mods activate 543 so it has be one them

 

i not sure which.

 

some like Silah i pretty isn't the issue nor is the house of cat mods they be turn off 

Edited by Nindran
Link to comment

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

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use