Jump to content

Unable to equip any spells/shouts


Recommended Posts

After messing around in Whiterun a bit, I realized I couldn't equip any spells or shouts. At first I thought it had something to do with Sexlab Survival and the Magic Curse from not having a magic license, but that ended up not being the issue. For the life of me I can't figure out what mod is doing it. The only thing i have to go on is that it tells me "I DO Not feel I have the power for that right now" whenever I try to equip a spell/shout. Before I go disabling mods one by one, I was wondering if anyone had any idea what mod would be causing this.

 

Text pop-up and active effects (I don't think any effects are causing this, but I figured I'd share it just in case): https://imgur.com/a/n8ShBbu

I've also attached my modlist as a txt document

Modlist.txt

Link to comment

Search through all your esp, esl, esm, pex and psc files for a part of that message i.e. "that right now". Notepad++ can do that easily for example.

 

You can also try this xEdit script I made. It is extremely slow, so expect it to run 5-10 minutes. It will however not find messages created from scripts, which is a possibility here.

{
  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('that right now', m) > 0 then
        AddMessage(IntToHex(GetLoadOrderFormID(e), 8));
end;

end.

 

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