Jump to content

No sex animations and a warning


Recommended Posts

Posted

Hello gang,

I got back into Skyrim SE after a little break and  redid my load order and find the sex animations don't work and I get an error message ('warning: Sex scene skipped' or something like that - I'm not at my computer so i cant check). I've run FNIS, LOOT, and was going to deselect my mods to see if I can figure out which one is causing the problem. First though, I thought I'd ask here because you guys are great with your answers. Can anyone figure out what's causing this?

 

Thanks in advance, and here is my load order:

 


  0  0     Skyrim.esm
  1  1     Update.esm
  2  2     Dawnguard.esm
  3  3     HearthFires.esm
  4  4     Dragonborn.esm
  5  5     Unofficial Skyrim Special Edition Patch.esp
254 FE   0 Skyrim Project Optimization - Full ESL Version.esm
  6  6     RealisticWaterTwo - Resources.esm
  7  7     RaceCompatibility.esm
  8  8     High Poly Head.esm
  9  9     Schlongs of Skyrim - Core.esm
 10  a     SexLab.esm
 11  b     Heels Sound.esm
254 FE   1 Crea_AtaHighHeels.esl
254 FE   2 Expressive Facegen Morphs.esl
 12  c     SexLabAroused.esm
 13  d     ZaZAnimationPack.esm
 14  e     SkyUI_SE.esp
 15  f     Immersive Sounds - Compendium.esp
 16 10     Obsidian Weathers.esp
 17 11     SMIM-SE-Merged-All.esp
 18 12     FNIS.esp
 19 13     Weapons Armor Clothing & Clutter Fixes.esp
 20 14     AI Overhaul.esp
 21 15     FNISspells.esp
 22 16     UIExtensions.esp
 23 17     RaceMenu.esp
 24 18     RaceMenuPlugin.esp
 25 19     XPMSE.esp
254 FE   3 FSMPM - The FSMP MCM.esp
 26 1a     Bijin AIO.esp
 27 1b     Jampion NPCs.esp
 28 1c     RaceCompatibilityUSKPOverride.esp
254 FE   4 Brows.esp
254 FE   5 KSHairdosSMP.esp
254 FE   6 KSWigsSMP.esp
 29 1d     TheEyesOfBeauty.esp
 30 1e     TW3Eyes.esp
254 FE   7 CBBE.esp
254 FE   8 3BBB.esp
 31 1f     RaceMenuMorphsCBBE.esp
254 FE   9 SOSPhysicsManager.esp
 32 20     Schlongs of Skyrim.esp
 33 21     SOS - Smurf Average Addon.esp
 34 22     SOS - VectorPlexus Regular Addon.esp
 35 23     The Ancient Profession.esp
 36 24     AddItemMenuSE.esp
 37 25     RaceMenuHH.esp
254 FE   a CharmingHighHeels.esp
 38 26     Maevan2EyeBrows.esp
 39 27     Tullius Eyes.esp
 40 28     Tullius Hair.esp
 41 29     SFO_SkinFeatureOverlays.esp
 42 2a     CommunityOverlays3.esp
 43 2b     CommunityOverlays2_31T50.esp
 44 2c     CommunityOverlays1_0T30.esp
 45 2d     FMS_FemaleMakeupSuite.esp
 46 2e     HG Hairdos 2.esp
254 FE   b Sakora's Make Over Kit for SKSE64.esp
 47 2f     YMMP.esp
254 FE   c WACCF_VanillaProjectiles.esp
254 FE   d WACCF_VanillaOrcishWeapons.esp
254 FE   e WACCF_VanillaGoldCoin.esp
254 FE   f WACCF_VanillaDragonPriestMasks.esp
254 FE  10 WACCF_VanillaDaedricWeapons.esp
254 FE  11 KSO Mage Robes.esp
254 FE  12 KSO Mage Robes ACE.esp
254 FE  13 KSO Mage Robes ACE ISC.esp
254 FE  14 DragonscaleBikini.esp
 48 30     SLAnimLoader.esp
254 FE  15 [Melodic] Lovely Lingerie.esp
 49 31     Alternate Start - Live Another Life.esp
 50 32     RealisticWaterTwo.esp
254 FE  16 RealisticWaterTwo - Alt Volcanic Watercolor.esp

 

Posted
4 minutes ago, Grayc said:

I get an error message

 

Where? Top left corner of the screen? Center in a popup window? Console? A log file?

Posted

It's on the top left. It says 'Warning: Sex scene failed; skipping' and my character and the npc do nothing, Then it completes...the non-scene (I can tell because my  character gets her payment).

 

 

Posted

Some options then:

  1. Analyze your Papyrus log from a session where the error message appeared.
  2. Search through all pex files in all mods for "scene failed". Notepad++ can do this search easily.
  3. Use the xEdit script below to search for MESG records that may contain the message.
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('scene failed', m) > 0 then
        AddMessage(IntToHex(GetLoadOrderFormID(e), 8));
end;

end.

 

 

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