Jump to content

Message box every 20 or 30 seconds.


Recommended Posts

Posted
3 hours ago, Miister Spiice said:

It says you strip off and a red mark appears.

An exact quote of the message would probably help people recognize where it's coming from.  A list of your installed mods further narrow down the possibilities.

Posted
12 hours ago, Grey Cloud said:

Or even a screenshot.

 

Presumably you are playing one of the three versions of Skyrim.

Thanks for the reply sorry I was brief last time.

Mind was elsewhere. 

I'm on Skyrim AE and picture is attached. 

Otherwise my Skyrim is fine.

I hope that might give some help to a solution. 

ScreenShot45.png

Posted

xEdit script to find the source of the message.

  1. Save the script below with a pas extension in xEdit's "Edit Scripts" directory.
  2. Load your load order as-is in xEdit.
  3. Right click any plugin.
  4. Apply Script.
  5. Find the script you just saved.
  6. When its done, inspect the form ids.

 

Spoiler
{
  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 feel an intense', m) > 0 then
        AddMessage(IntToHex(GetLoadOrderFormID(e), 8));
end;

end.

 

 

  • 2 weeks later...

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