MadMansGun Posted December 12, 2025 Author Posted December 12, 2025 1 hour ago, wintersouls23 said: I don't know why but female werewolves simply don't show up in my game even with the summon spell. It just uses the male model even on player character. i would suggest using xedit to see what is overriding them NakedTorsoWerewolfBeast [ARMA:000CDD87] also i have nothing to do with demonic creatures. 40 minutes ago, Baryonyx75 said: Does the BDIC sexlab and creature framework mods by BadDog still work with the v3 version of Creature Framework? depends on what part of it you are talking about: the BDIC addon and its json files = yes the CF edit he has (or use to have) on his page = hell no.
wintersouls23 Posted December 12, 2025 Posted December 12, 2025 5 minutes ago, MadMansGun said: i would suggest using xedit to see what is overriding them NakedTorsoWerewolfBeast [ARMA:000CDD87] also i have nothing to do with demonic creatures. depends on what part of it you are talking about: the BDIC addon and its json files = yes the CF edit he has (or use to have) on his page = hell no. I had the same issue as shown about two posts up. The cause for mine was easy npc
Baryonyx75 Posted December 12, 2025 Posted December 12, 2025 Good to know about CF. The Sexlab patch just makes the interaction radius better, so it won't break things.
Polyleritae Posted December 12, 2025 Posted December 12, 2025 18 hours ago, wintersouls23 said: Have you ever found a fix for this? I have the same issue. Not quite. Part of it was, I think, not having the correct female creature animations... but even after having installed them and verifying that they can trigger with the appropriate input, I still get the same text re: who inseminates whom. I'm not entirely sure why this is the case, I'm afraid. Insofar as I know, I don't have anything that should override creature genders; I have a mod that adds MORE creatures but doesn't alter their files, and if I remember correctly it's explicitly noted as compatible/recommend with MNC.
MadMansGun Posted December 12, 2025 Author Posted December 12, 2025 (edited) 1 hour ago, Polyleritae said: I still get the same text re: who inseminates whom that depends on whatever mod is creating the text you are seeing, Eg: Creature Summoner has a text option that can be turned off in its mcm. Spoiler Event Mated(string eventName, string argString, float argNum, form sender) actor[] WhosBeenFucking = SexLab.HookActors(argString) actor victim = SexLab.HookVictim(argString) actor creature = none if (victim == WhosBeenFucking[0]) creature = WhosBeenFucking[1] else creature = WhosBeenFucking[0] endif creature.ClearLookat() if hcConfig.PostMatingEffects if victim != none sslBaseVoice voice = SexLab.PickVoice(victim) ; int vfxInstance = voice.Moan(victim, 0.5, true) ; Sound.SetInstanceVolume(vfxInstance, SexLab.Config.fVoiceVolume) MfgConsoleFunc.ResetPhonemeModifier(victim) ; Remove any previous modifiers and phenomes victim.SetExpressionOverride(3,100) ; for "That hurt like hell! look" MfgConsoleFunc.SetModifier(victim,2,50) MfgConsoleFunc.SetModifier(victim,3,50) MfgConsoleFunc.SetModifier(victim,4,50) MfgConsoleFunc.SetModifier(victim,5,50) MfgConsoleFunc.SetModifier(victim,8,50) MfgConsoleFunc.SetModifier(victim,12,30) MfgConsoleFunc.SetModifier(victim,13,30) MfgConsoleFunc.SetPhoneme(victim,1,10) MfgConsoleFunc.SetPhoneme(victim,2,100) MfgConsoleFunc.SetPhoneme(victim,7,50) debug.SendAnimationEvent(victim,"IdleChildCryingStart") ; Cry patiently while waiting for your next Mating partner or your designated Mate to get it up again if victim == PlayerRef If hcConfig.DisplayExplicitNotifications && creature.GetLeveledActorBase().GetSex() == 0 Debug.Notification("The Beast has withdrawn his mast from your body,") Utility.Wait(3) Debug.Notification("but your insides now burn from the abuse you've taken.") Utility.Wait(3) Debug.Notification("leaving you weak, and vulnerable to be taken again.") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 0) Debug.Notification("The Beast has milked your mast for all its worth,") Utility.Wait(3) Debug.Notification("leaving you emptied and sore as you lay at her mercy,") Utility.Wait(3) Debug.Notification("and it won't be long till she tries to take more.") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 1) Debug.Notification("The Beast's lust has been satisfied,") Utility.Wait(3) Debug.Notification("but your weak from the abuse she's given you,") Utility.Wait(3) Debug.Notification("leaving you sore & vulnerable to be taken again.") endif else If hcConfig.DisplayExplicitNotifications && creature.GetLeveledActorBase().GetSex() == 0 Debug.Notification("Your Beast has unleashed his seed deep within " + victim.GetLeveledActorBase().GetName() + "'s body") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 0) Debug.Notification("Your Beast has milked " + victim.GetLeveledActorBase().GetName() + "'s cock dry") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 1) Debug.Notification("Your Beast has been satisfied by " + victim.GetLeveledActorBase().GetName()) EndIf EndIf endif elseif !hcConfig.PostMatingEffects if victim == PlayerRef If hcConfig.DisplayExplicitNotifications && creature.GetLeveledActorBase().GetSex() == 0 Debug.Notification("The Beast has withdrawn his mast from your body,") Utility.Wait(3) Debug.Notification("but you can still feel his seed sloshing deeper within you,") Utility.Wait(3) Debug.Notification("keeping your insides lubed for him to breed you again") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 0) Debug.Notification("The beast has milked your mast for all its worth,") Utility.Wait(3) Debug.Notification("her body swallowing all your seed deeper within,") Utility.Wait(3) Debug.Notification("but it won't be long till she lusts for more.") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 1) Debug.Notification("The Beast's lust has been satisfied,") Utility.Wait(3) Debug.Notification("both of your nethers are left dripping from release,") Utility.Wait(3) Debug.Notification("but it won't be long till she wants more.") endif elseif victim != none If hcConfig.DisplayExplicitNotifications && creature.GetLeveledActorBase().GetSex() == 0 Debug.Notification("Your Beast has unleashed his seed deep within " + victim.GetLeveledActorBase().GetName() + "'s body") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 0) Debug.Notification("Your Beast has milked " + victim.GetLeveledActorBase().GetName() + "'s cock dry") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 1) Debug.Notification("Your Beast has been satisfied by " + victim.GetLeveledActorBase().GetName()) EndIf endif endIf EndEvent (also looking at this now i see it's in need of optimization, far more calls to hcConfig.DisplayExplicitNotifications than needed) Edited December 12, 2025 by MadMansGun
wintersouls23 Posted December 13, 2025 Posted December 13, 2025 5 hours ago, Polyleritae said: Not quite. Part of it was, I think, not having the correct female creature animations... but even after having installed them and verifying that they can trigger with the appropriate input, I still get the same text re: who inseminates whom. I'm not entirely sure why this is the case, I'm afraid. Insofar as I know, I don't have anything that should override creature genders; I have a mod that adds MORE creatures but doesn't alter their files, and if I remember correctly it's explicitly noted as compatible/recommend with MNC. Well, my issue was easy npc. Do you happen to use easy npc? I removed it.
MadMansGun Posted December 13, 2025 Author Posted December 13, 2025 list of known problem mods that i can remember: one of the Serana mods but i cant remember which one but, "Bijin AIO.esp", "Serana.esp" and "Valerica.esp" all turn the female werewolf into a male. EasyNPC: i don't know the details of what it's doing, just that it's causing problems, so i assume its the same issue as the above. ABC: the .esp file found in it is turning the herm werewolves into male, so just turn off/delete that esp. SOS: double dick problems, you need to turn off werewolves under all of its mcm settings. One With Nature - Dynamic Animals and Creatures: it does not cover females added by mnc. you need to add OWNWerewolfFaction "OWN Werewolf Faction" [FACT:0400388B] to the female werewolf's faction, and OWNAbilityWerewolf "OWNAbilityWerewolf" [SPEL:0404FBA9] to the female werewolf's actor effects. bash/smash patches: they are known to mess up the body template flags on some creatures, but mostly werewolves. Total Werewolf Overhaul: it has a patch for HCOS in it but HCOS no longer has werewolf meshes in it so using this patch will only cause more problems. moonlight tales: that piece of shit is not even compatible with itself, let alone other werewolf mods.
tonitrulupus Posted December 13, 2025 Posted December 13, 2025 3 hours ago, MadMansGun said: moonlight tales: that piece of shit is not even compatible with itself, let alone other werewolf mods. The mini version isn't to bad, just the heads seem to cause clipping, looks like its trying to implement 2 different head on the werewolves added my the mini moonlight mod.
tonitrulupus Posted December 13, 2025 Posted December 13, 2025 On 12/11/2025 at 9:17 PM, wintersouls23 said: I don't know why but female werewolves simply don't show up in my game even with the summon spell. It just uses the male model even on player character. Edit: EasyNPC was the cause. I use TWO total werewolf overhaul, and it seems to work rather well with MNC as we as CF, with little to no issues, the only time it does not show is the actually changing, it also overhauls both male and female, gives physics to both genders. With my mod load, I have to disable the mini moonlight tails for the pc and that is it. It will effect both PC and NPC. I know when that mod first came out it totally sucked, but they really have improved it but leaps and bounds on this version.
tonitrulupus Posted December 13, 2025 Posted December 13, 2025 9 hours ago, Polyleritae said: I still get the same text re: who inseminates whom. That sound like one of the fertility mods, do you have any you are using, fertility mode state "x (NPC) takes sperm from X (NPC or whatever they had sex with)" not sure what they others say but I am sure it will inform you.
MadMansGun Posted December 13, 2025 Author Posted December 13, 2025 2 hours ago, Wubb_Wubbs said: so whats new with this update? owo 12 hours ago, MadMansGun said: Reveal hidden contents Event Mated(string eventName, string argString, float argNum, form sender) actor[] WhosBeenFucking = SexLab.HookActors(argString) actor victim = SexLab.HookVictim(argString) actor creature = none if (victim == WhosBeenFucking[0]) creature = WhosBeenFucking[1] else creature = WhosBeenFucking[0] endif creature.ClearLookat() if hcConfig.PostMatingEffects if victim != none sslBaseVoice voice = SexLab.PickVoice(victim) ; int vfxInstance = voice.Moan(victim, 0.5, true) ; Sound.SetInstanceVolume(vfxInstance, SexLab.Config.fVoiceVolume) MfgConsoleFunc.ResetPhonemeModifier(victim) ; Remove any previous modifiers and phenomes victim.SetExpressionOverride(3,100) ; for "That hurt like hell! look" MfgConsoleFunc.SetModifier(victim,2,50) MfgConsoleFunc.SetModifier(victim,3,50) MfgConsoleFunc.SetModifier(victim,4,50) MfgConsoleFunc.SetModifier(victim,5,50) MfgConsoleFunc.SetModifier(victim,8,50) MfgConsoleFunc.SetModifier(victim,12,30) MfgConsoleFunc.SetModifier(victim,13,30) MfgConsoleFunc.SetPhoneme(victim,1,10) MfgConsoleFunc.SetPhoneme(victim,2,100) MfgConsoleFunc.SetPhoneme(victim,7,50) debug.SendAnimationEvent(victim,"IdleChildCryingStart") ; Cry patiently while waiting for your next Mating partner or your designated Mate to get it up again if victim == PlayerRef If hcConfig.DisplayExplicitNotifications && creature.GetLeveledActorBase().GetSex() == 0 Debug.Notification("The Beast has withdrawn his mast from your body,") Utility.Wait(3) Debug.Notification("but your insides now burn from the abuse you've taken.") Utility.Wait(3) Debug.Notification("leaving you weak, and vulnerable to be taken again.") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 0) Debug.Notification("The Beast has milked your mast for all its worth,") Utility.Wait(3) Debug.Notification("leaving you emptied and sore as you lay at her mercy,") Utility.Wait(3) Debug.Notification("and it won't be long till she tries to take more.") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 1) Debug.Notification("The Beast's lust has been satisfied,") Utility.Wait(3) Debug.Notification("but your weak from the abuse she's given you,") Utility.Wait(3) Debug.Notification("leaving you sore & vulnerable to be taken again.") endif else If hcConfig.DisplayExplicitNotifications && creature.GetLeveledActorBase().GetSex() == 0 Debug.Notification("Your Beast has unleashed his seed deep within " + victim.GetLeveledActorBase().GetName() + "'s body") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 0) Debug.Notification("Your Beast has milked " + victim.GetLeveledActorBase().GetName() + "'s cock dry") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 1) Debug.Notification("Your Beast has been satisfied by " + victim.GetLeveledActorBase().GetName()) EndIf EndIf endif elseif !hcConfig.PostMatingEffects if victim == PlayerRef If hcConfig.DisplayExplicitNotifications && creature.GetLeveledActorBase().GetSex() == 0 Debug.Notification("The Beast has withdrawn his mast from your body,") Utility.Wait(3) Debug.Notification("but you can still feel his seed sloshing deeper within you,") Utility.Wait(3) Debug.Notification("keeping your insides lubed for him to breed you again") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 0) Debug.Notification("The beast has milked your mast for all its worth,") Utility.Wait(3) Debug.Notification("her body swallowing all your seed deeper within,") Utility.Wait(3) Debug.Notification("but it won't be long till she lusts for more.") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 1) Debug.Notification("The Beast's lust has been satisfied,") Utility.Wait(3) Debug.Notification("both of your nethers are left dripping from release,") Utility.Wait(3) Debug.Notification("but it won't be long till she wants more.") endif elseif victim != none If hcConfig.DisplayExplicitNotifications && creature.GetLeveledActorBase().GetSex() == 0 Debug.Notification("Your Beast has unleashed his seed deep within " + victim.GetLeveledActorBase().GetName() + "'s body") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 0) Debug.Notification("Your Beast has milked " + victim.GetLeveledActorBase().GetName() + "'s cock dry") elseif hcConfig.DisplayExplicitNotifications && (creature.GetLeveledActorBase().GetSex() == 1 && victim.GetLeveledActorBase().GetSex() == 1) Debug.Notification("Your Beast has been satisfied by " + victim.GetLeveledActorBase().GetName()) EndIf endif endIf EndEvent (also looking at this now i see it's in need of optimization, far more calls to hcConfig.DisplayExplicitNotifications than needed) optimized that script in Creature Summoner to look at hcConfig.DisplayExplicitNotifications less. 3
Dokurobe Posted December 13, 2025 Posted December 13, 2025 I have an issue with frost atronach. Frost atronach schlong is small, is like a triangle shape and is static. (i remember it was different in LE version). I checked "ancientfrostatronachHard.nif" and "atronachfrostHard.nif" in MNC folder have this issue, instead my "atronachfrost.nif" in "actors/atronachfrost/character assets" has the right schlong. Can someone help me?
Polyleritae Posted December 13, 2025 Posted December 13, 2025 16 hours ago, wintersouls23 said: Well, my issue was easy npc. Do you happen to use easy npc? I removed it. I do not. It's not the end of the world, it's just that sometimes female creatures seem to be registered as male. I'm working on installing the updates so we'll see how that goes :)
wintersouls23 Posted December 14, 2025 Posted December 14, 2025 14 hours ago, Polyleritae said: I do not. It's not the end of the world, it's just that sometimes female creatures seem to be registered as male. I'm working on installing the updates so we'll see how that goes gl
WeerW3ir Posted December 14, 2025 Posted December 14, 2025 Hey. Its been a while. was there any new male pc on fem beast anims?
MadMansGun Posted December 14, 2025 Author Posted December 14, 2025 2 hours ago, WeerW3ir said: Hey. Its been a while. was there any new male pc on fem beast anims? the last animations i made were the 3 werewolf animations in HCOS.
elf-knight Posted December 16, 2025 Posted December 16, 2025 Hi, am having a bit of an issue. When I was first testing the werewolf sex scenes it was fine, showing an appropriate full cock. Yet now it won't deploy the full cock, and it will spawn sheathed.
plutocene Posted December 16, 2025 Posted December 16, 2025 (edited) Having issues with decal textures applied to dragons by MNC (see spoiler). Presumably, because MNC introduces its custom NPCs and the shared textures get overwritten, resulting in this mismatch. Can I somehow savely remove dragons from MNC altogether? Spoiler Edit: I think I figured out how to do it by creating a patch on top of a patch, removing the MNC dragons from the leveled list. Spoiler Edited December 16, 2025 by plutocene
MadMansGun Posted December 17, 2025 Author Posted December 17, 2025 10 hours ago, elf-knight said: Hi, am having a bit of an issue. When I was first testing the werewolf sex scenes it was fine, showing an appropriate full cock. Yet now it won't deploy the full cock, and it will spawn sheathed. turn off freecam...also make sure werewolves are turned off in sos.
elf-knight Posted December 17, 2025 Posted December 17, 2025 1 minute ago, MadMansGun said: turn off freecam...also make sure werewolves are turned off in sos. Thank you for the response. I'm not currently using sos but TNG, in particular the Olycanthropy mod. I recently turned off the SOS patch for xp32 and it wouldn't deploy the werewolf cock but allowed 3ba body physics to work outside of clothing. Yet when I turned it back on the werewolf cock appeared no issue yet 3ba body physics outside of clothes turned off. Does Ostim body physics conflict with Sexlab body physics?
MadMansGun Posted December 19, 2025 Author Posted December 19, 2025 42 minutes ago, sense1776 said: Pandora use FNIS 43 minutes ago, sense1776 said: OStim not my problem.
Neo_85 Posted December 20, 2025 Posted December 20, 2025 (edited) Hello everyone. Does anyone know why the CREATION FRAMEWORK LOADS ENDLESSLY IN THE MOD SETTINGS MENU? Edited December 20, 2025 by Neo_85
safado Posted December 21, 2025 Posted December 21, 2025 18 hours ago, Neo_85 said: Hello everyone. Does anyone know why the CREATION FRAMEWORK LOADS ENDLESSLY IN THE MOD SETTINGS MENU? Maybe your load list JContainers SE installation is not targeting your Skyrim version. Also, SkyUI has issues with latency of load list with many heavy scripted mods (at startup), try something like Menu Maid 2 to assist with SkyUI MCM latency issues. It will not solve issues from mods not loading because of incomplete requirement. 1
Cretador Posted December 21, 2025 Posted December 21, 2025 Hi , I have a problem with Immersive Creatures. I have everything installed from MoreNastyCritters, as well as BadDog's Immersive Creatures and obviously Immersive Creatures mod but when I try to start an animation with a creature from the mod (Goblin, Draman Skeleton, Falmer variant, etc.), it simply doesn't work. The Defeat mod tells me I can't surrender to this enemy, and the same goes for necrophilia; it also tells me You can't do this. However, if I do a simple sex animation, my character and the creature will start the animation, but the creature remains static, only showing its genitals. I should mention that in the Mod Creature framework, all the creatures that immersive creatures add appear. Is there something I'm missing or something wrong? Here is my order btw Spoiler Skyrim.esm Update.esm Dawnguard.esm HearthFires.esm Dragonborn.esm ccBGSSSE001-Fish.esm ccQDRSSE001-SurvivalMode.esl ccBGSSSE037-Curios.esl ccBGSSSE025-AdvDSGS.esm _ResourcePack.esl unofficial skyrim special edition patch.esp SexLab.esm SexLabAroused.esm CreatureFramework.esm BSAssets.esm BSHeartland.esm BS_DLC_patch.esp Expressive Facegen Morphs.esl High Poly Head.esm Heels Sound.esm RaceCompatibility.esm SexLabTools.esl ZaZAnimationPack.esm Wyrmstooth.esp EFFCore.esm TrueHUD.esl TheNewGentleman.esp titkit.esl SkyUI_SE.esp Summermyst - Enchantments of Skyrim.esp Skyrim Immersive Creatures Special Edition.esp SnoipehMoreCreatures.esp SexLab More Creatures.esp FurnitureMarkerSex.esp EFFDialogue.esp Dovabear.esp MoreNastyCritters.esp SLPrivacy.esp Scamps.esp Apocalypse - Magic of Skyrim.esp DK_Thogra.esp Missives.esp My Home Is Your Home.esp BDIC.esp BDICHentaiCreatures.esp CreatureSummoner.esp BDArousalSpells.esp Missives - Heartland.esp Missives - Wyrmstooth.esp Missives - Solstheim.esp 01RieklingsNSkyrim.esp Headhunter - Bounties Redone.esp BountiesRedone_Missives_Bruma.esp BountiesRedone_Missives_Solstheim.esp BountiesRedone_Missives_Wyrmstooth.esp Headhunter - Leveled Rewards.esp Tullius Hair 3 SMP.esp Tullius Hair 3 SMP2.esp MikanEyes All in one SE.esp TheEyesOfBeauty.esp FMS_FemaleMakeupSuite.esp Koralina's Makeup Tweaks.esp BDICCFPatch.esp SexLab Extra Voices.esp NieR Automata Characters.esp Taller Women 30.esp High Poly Head Vampire Fix.esp SLAL_AnimationsByLeito.esp KSHairdosSMP.esp SLALAnimObj.esp Sovngarde Steel Armor and Weapons.esp TBD - ShadowWitch.esp [full_inu] Queen Marika's Dress.esp RB's Barbarian set.esp [Ryan Reos] Dark Elf Blader.esp [Odd] Demon Seducer.esp Easy Bunny.esp RaceMenuMorphsTBD.esp TouchedbyDibella.esp RaceMenu.esp CBBE.esp RaceMenuPlugin.esp RaceMenuMorphsCBBE.esp RaceCompatibilityUSKPOverride.esp Kelly Nord Follower.esp Seyenna.esp TBD - NiseDovaArmor.esp 3jiouAnimSLAL.esp DogmaAnimSLAL.esp TBD - Sorceress.esp UIExtensions.esp AddItemMenuSE.esp Improved Eyes Skyrim.esp New Summon Creature Spells 2.esp New Summon Creature Spells.esp RE2 Licker.esp RE2 Licker_CS.esp KS Hairdo's.esp WetFunction.esp SexLabDefeat.esp Project Cougars - Fralia Greymane.esp Extended Encounters.esp SLAL_K4Anims.esp Scent of Sex.esp DSer360MovementBehavior.esp XPMSE.esp MCMHelper.esp AnubAnimObj.esp TMBVanillaArmorandClothes.esp FNIS.esp SLAL_AnimationByBakaFactory.esp BakaFactoryABC.esp MNC_ABC_Patch.esp SC_HorseReplacer.esp nhaSimpleSexing.esp EasyWheel-AIO.esp SLAnimLoader.esp CharmingHighHeels.esp FSMPM - The FSMP MCM.esp FNISSexyMove.esp RaceMenuHH.esp SLALAnimObjBillyy.esp Ordinator - Perks of Skyrim.esp
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now