Jump to content

Error: NiOverride not installed - even with RaceMenu


Recommended Posts

Posted

Posted this in the wrong forum initially.

 

As title says. Every time I load into the game, I get an error thrown that causes all NPCs to A-pose and disables animations. I unfortunately added a bunch of mods at once and then got interrupted, so I'm not sure at what step in my process this happened, nor has trying to disable individual mods help. I've been at this for a few days and am completely and utterly lost. Thank you for any and all help ❤️

enb2024_7_14_20_01_21 (1).bmp

Modlist in spoiler:

Spoiler

*Unofficial Skyrim Special Edition Patch.esp
*unofficial skyrim creation club content patch.esl
*dcc-soulgem-oven-000.esm
*SexLabAroused.esm
*SexLab.esm
*Devious Devices - Assets.esm
*Devious Devices - Integration.esm
*Devious Devices - Expansion.esm
*Devious Devices - Contraptions.esm
*ZaZAnimationPack.esm
*CreatureFramework.esm
*Schlongs of Skyrim - Core.esm
*Heels Sound.esm
*TrueHUD.esl
*High Poly Head.esm
*daymoyl.esm
*EFFCore.esm
*SkyUI_SE.esp
*SMIM-SE-Merged-All.esp
HentaiCreatures.esp
*RaceMenu.esp
*RaceMenuPlugin.esp
*CraftGrayfox.esp
*New Falmer Statue fixes.esp
*Vanilla hair remake SMP NPCs.esp
*Cutting Room Floor.esp
*CreationClubIntegration.esp
*Run For Your Lives.esp
*Cloaks.esp
*New Vaermina Statue.esp
*The Paarthurnax Dilemma.esp
*Optional.DibellaStatuesFixes.esp
*NewStatueOfShalidorMagicLights.esp
*dc-mana-tanks-000.esp
*seeing-yellow.esp
*dse-buttplug.esp
*Devious Devices For Him.esp
*DD_Animation_Overhaul_by_Taki17.esp
*OAroused.esp
*OSLAroused.esp
*Devious Devices - BRRF.esp
*Devious Devices SE patch.esp
*SexLab Inflation Framework.esp
*SLAnimLoader.esp
*SexLabMatchMaker.esp
*Schlongs of Skyrim.esp
*EFFDialogue.esp
*Dovabear.esp
*SexLabTools.esp
*ERF - Futanari CBBE - Equippable.esp
*SOS - ERF - Futanari CBBE - Addon.esp
*SOS - Smurf Average Addon.esp
*SOS - VectorPlexus Muscular Addon.esp
*SOS - VectorPlexus Regular Addon.esp
*Zipsuit.esp
*[Predator] Play Bunny.esp
*Obi's LeatherLingerie.esp
*FSMPM - The FSMP MCM.esp
*[Daymarr] Late Night Pack.esp
*ChampionofAzura.esp
*Ambassador of Darkness.esp
*VioLens SE.esp
*Sunglasses_WF.esp
*SOSRaceMenu.esp
*XPMSE.esp
*MCMHelper.esp
*KSHairdosSMP.esp
*KSWigsSMP.esp
*CBBE.esp
*RaceMenuMorphsCBBE.esp
*LadyTrousers.esp
*ColovianNobleClothes.esp
*Cloaks - Dawnguard.esp
*Cloaks - USSEP Patch.esp
*SkyrimOutfitSystem.esp
*3BBB.esp
*SOSPhysicsManager.esp
*[Caenarvon] Calamity Queller.esp
*[Caenarvon] Plegian Dark Mage.esp
*EvenMoreMakeup.esp
*FNIS.esp
*FMS_FemaleMakeupSuite.esp
*High Poly Head Vampire Fix.esp
*HPP - Vaermina's Torpor.esp
*Brows.esp
*Koralina's Makeup Tweaks.esp
*[Caenarvon] Narukami.esp
*[Caenarvon] Thorn Princess.esp
*Tullius Eyes.esp
*UIExtensions.esp
*YMMP.esp
*dcc-topaz.esp
*RaceMenuHH.esp
*AddItemMenuSE.esp
*AHZmoreHUD.esp
*EbonyMailSneak.esp
*Skyrim Cheat Engine.esp
*SLALAnimObj.esp
*SexLabDefeat.esp
*Alternate Start - Live Another Life.esp
*Modern Brawl Bug Fix.esp

 

Posted (edited)
57 minutes ago, thrxwaway said:

I get an error thrown...

 

What error? The one in the title?

 

Where? In-game console? Top left of the screen? Center of the screen? A log file? A 3rd party app?

 

Edit: Just in case its all in the screenshot: that's not loading for me. LL's been a bit... unreliable with attachments lately.

 

57 minutes ago, thrxwaway said:

...all NPCs to A-pose and disables animations

 

That's a FNIS issue, fix all warnings and errors in its output.

Edited by traison
Posted
7 minutes ago, traison said:

What error? The one in the title?

This:



enb2024_7_14_20_01_21.jpg.c092be4581817da37e816a71b44e4654.jpg

My guess is either the message is coming from an LE mod or the OP is using the wrong version of RM for their Skyrim exe version.

Posted

Use this xEdit script to find where the message is coming from.

 

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('NiOverride not installed', m) > 0 then
        AddMessage(IntToHex(GetLoadOrderFormID(e), 8));
end;

end.

 

 

Then analyze its scripts to figure out what its expecting to find, and what its actually finding.

Posted

Had LE version of Soul Gem Oven and the FunnyBizness animation packs enabled, which was causing the issue. It's fixed now. Thank you!

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