Jump to content

Skyrim: Special Edition

Sub Category  

Select a subcategory to view available files.

Files From Subcategories

  1. Barefoot Realism NG

    Modernize of the original Barefoot Realism  on Skyrim SE / AE / VR, including native SKSE accelerator, plus a few Papyrus correctness fixes . All gameplay design, formulas, and balance are the original mod author's work — this project mainly swaps the heaviest Papyrus loops for a CommonLibSSE-NG plugins.
     
    Check the original mod page for details.
     
    Note: It is an beta version, so there might be problems. Please use with caution and report any issues if you run into any.
     
    It is created with CommonLIbSSE-NG, so it is supposed to support all SE/AE/VR version that CommonLIbSSE-NG supports. But I could only test with 1.6.1170.0

    Suggest to install with cleaned save or new save since I cleaned ESP.
     
    What's New in NG
    Native implemetation replacing Papyrus
     
    Original Papyrus Replacement PBFTerrainDetectionQuestScript.OnUpdate — every second, did 2× PlaceAtMe + 2× MoveTo + Spell.Cast + 2× Delete + 9× FindClosestReferenceOfTypeFromRef to figure out which surface decal had spawned under the player A single downward havok pick from C++; reads bhkShape::materialID and maps to the mod's 0..8 surface ids PlayerBarefootQuestScript.GetCurrentLocationType — called twice per footstep (~6×/sec while sprinting) doing weather + cell-owner + faction-owner + cell-name substring search Same logic in C++, one VM call per invocation PlayerBarefootQuestScript.OnAnimationEvent math — five global reads, five global writes, two Math.Pow calls, ten Config property reads, all in Papyrus per footstep Two native calls (GetStaggerChanceNative for pure compute and ApplyDirtinessPainStep for the dirtiness/pain/roughness state writes)  
    Water detection is delegated to powerof3's PapyrusExtenderSSE (PO3_SKSEFunctions.IsRefInWater).
     
    Papyrus correctness fixes shipped in the native implementation
    Clamp(NewDirtiness, 0, 1) was a no-op in the original (Papyrus pass-by-value with a discarded return). After enough sprinting, FeetDirtiness / FeetPain / FeetRoughness could drift above 1.0. Fixed when implementing in C++ The sneak branch in GetStaggerChance was unreachable: the original if IsSprinting / elseif !IsRunning / elseif IsSneaking chain made the third arm a dead branch because IsSneaking is never reachable past !IsRunning == false. Reordered to check IsSneaking first.  
    Footwear detection keywords (KID) The mod no longer hard-codes which items are ankle restraints, which count as "shoes", or which footwear is treated as barefoot. Instead it reads three keywords, distributed at runtime by Keyword Item Distributor (KID) via the bundled `BarefootRealism_KID.ini`:   `BarefootRealism_AnkleRestraint` — worn items that block changing footwear. By default KID tags anything carrying the ZaZ `zbfWornAnkles` or Devious Devices `zad_DeviousAnkleShackles` keyword. `BarefootRealism_Shoes` — footwear that counts as "shoes" (still allowed past ankle restraints when the MCM option is on). By default KID tags armor with "Shoes" in its name. `BarefootRealism_BarefootException` — footwear that counts as barefoot (e.g. DDx slave heels). The MCM "Set worn as barefoot exception" button tags the worn item with this keyword (persists across saves); whole categories can be tagged by editing the INI.   Edit `BarefootRealism_KID.ini` to extend coverage to other mods' items.  
    Integrations
    Bathing in Skyrim - Renewed The original Bathing in Skyrim in the mod is changed to integrated with new BiSR.  
    Source
    GitHub

    1221 downloads

    Updated

  2. Animated Gaping Holes

    Description
    This is a quick mod that will give your character an animated hentai-like gaping vagina/anus after sex scenes. The longer your character is penetrated, the worse the gape. It's highly configurable and designed specifically for CBPC vagina/anus collision physics - but should work for SMP if you've managed to get that working for collisions instead. 
     
    Atm it's largely just a functional prototype, but the concept is there and it works as you'd expect. In the future it'll likely be expanded so the gape is more dependent on the actor penetrating, rather then a generic penetration duration threshold. 
     
    It also ONLY covers the PLAYER CHARACTER for now. This is mostly due to the fact this system has to run before every frame draw, so adding an actor scan system could potentially delay frames a bit. But if enough people are interested, I'd be up for making it work for all female NPC's in the area aswell. 
     
     
    Known problems
    If Expect to have to edit the MaxOpeningSize. Different body types have different setups Only works on PPA 0.0.33+  
    Requirements:
    A body with the following bones: NPC L Pussy02, NPC R Pussy02, VaginaB1, Clitorall, NPC LB Anus2, NPC RB Anus2, NPC RT Anus2, NPC LT Anus2. Pretty sure 3BA, UBE both have those bones. Procedural Penis Animations ONLY 0.0.33+ OR YOUR PC MAY EXPLODE SKSE AddressLibrary SKSE Menu Framework  
    Reloading the JSON in-game
    Open console (~), and press F5. That should reload it. 
     
    You can also press F6 while in the console to add +5 seconds of gape
     
    Configuration
    The file is located at \SKSE\Plugins\AnimatedEffects.json
     
    Use Skse Mod Menu to edit this. Don't be a weirdo and waste your time (Press F1 to open menu)
    https://www.nexusmods.com/skyrimspecialedition/mods/120352
     
    { // === VAGINA SETTINGS === "Vagina": { // How wide (in game units) CBPC has to stretch the hole before we assume // something is inside and start tracking arousal. "PenetrationThreshold": 2.0, // After the penetration stops (CBPC closes), how long (seconds) do we wait // before we take control and start the pulsing animation? "YieldDuration": 1.5, // How many seconds of continuous use it takes to reach maximum gaping size. // Lower = gets loose faster. "TimeForMaxGape": 30.0, // Once the action stops, how long (seconds) it stays gaped open before // it starts slowly closing up. "DecayWaitTime": 4.0, // Base speed of the heartbeat/throb animation. "PulseSpeed": 3.0, // The maximum size multiplier when fully gaped. "MaxOpeningSize": 1.7, // When aroused, the hole stays open at least this much (0.0 to 1.0). // 0.3 means it never fully closes during the pulse cycle. "MinOpenness": 0.3, // How much "movement" happens on top of the minimum openness. // MinOpenness + PulseRange should usually equal 1.0. "PulseRange": 0.7, // Just a slightly different algorithm "Twitchy": false, // Don't touch these unless you want to mess with the sine wave shape. "Math": { // How fast the pulse speed itself changes (organic feeling). "SpeedDriftFreq": 0.01, // How much the speed changes. "SpeedDriftAmp": 0.5, // Makes the pulse sharp. Higher number = sharp heartbeat, Lower = smooth sine wave. "PulseCurvePower": 3.0, // Speed of the micro-jitter (muscle spasming). "JitterFreq": 0.9, // Intensity of the micro-jitter. "JitterAmp": 0.02 } }, "Debug": false, // Adds debug logging // === ANUS SETTINGS === "Anus": { "PenetrationThreshold": 2.0, "YieldDuration": 1.5, "TimeForMaxGape": 30.0, "DecayWaitTime": 4.0, "PulseSpeed": 3.0, "MaxOpeningSize": 1.7, "MinOpenness": 0.3, "PulseRange": 0.7, "Twitchy": false, "Math": { "SpeedDriftFreq": 0.01, "SpeedDriftAmp": 0.5, "PulseCurvePower": 3.0, "JitterFreq": 0.9, "JitterAmp": 0.02 } } }  
    Example video
    https://i.gyazo.com/572b18c738409d9d5ecb22f15c6ae7aa.mp4

     
     

    7925 downloads

    Updated

  3. Pamatronic's Prison Alternative Ostim Patch

    Requires
    Prison Alternative 2.0.3 and all of its dependencies
    PA - Bad End Solitude 1.7.6 - OCum Ascended is a soft dependency.
    PA - Bad End Riften 1.3.1
    PA - Outdoor Event 1.2
     
    OStim Standalone and all of its dependencies for it to work.
    The patch I made for the main Prison Alternative was the ZAP version, while using ZAZ 8.0+. I think the patch should work for the ZAZ free version, but I'm not sure.
     

    1120 downloads

    Submitted

  4. Maiden Resource Pack

    Maiden Resource Pack
    Contains all the assets for the maiden mods
    along with templates already set up in the CK to make your own maiden followers
    Now over 60+ new eyes (brows & makeup to come)
    Required for the Maiden mods going forward
    Cuts down on outfit/body bloat
    Important! Disable/uninstall Maidens of Darkness before loading the Resource Pack
    Then enable/reinstall Maidens of Darkness - "Yes to overwrite all"
     
    Q. You said we can make our own followers?
    A. Yes, use this mod as a requirement and the templates already have the basics filled out along with bodies. Of course knowledge of making followers is a requirement. Just shoot some cred this way is all I ask  

    Q. Does this mod do anything?
    A. On its own no, you must have a maiden pack that requires it for it to function. 

    Q. Why load Maidens of Darkness after?
    A. Basically this is a skinned down version of MoD without all the followers, dungeons, etc. As it had the most converted to the maiden bodies. I have yet to make MoD require it so at the moment they will overwrite one another in some places. Therefore, it is essential that MoD is load after the Resource Pack otherwise you'll lose the dungeons and followers. 
     
    Mods that require this pack:
    Daedric Maidens
    Kelly 2.0

    Need Mod(s) for this resource pack:
    You need Zaz 8.0+ Cbbe HDT 2023, which is located near the bottom of the page link below

     
    Awesome Modder Credits!!!
     
     
     
    juicypepper - DX conversion to tbd, thank you!
    s4rms - Binibini Skin
    auburnsred - CN's Fantasy & Demonic Eyes SE
    arta14 - for Arta glasses, thanks again!
    Ousnius -  BodySlide and Outfit Studio, CBBE
    Shiva182 - Maevan2's Eye Brows SE
    DomainWolf - Skin Feature Overlays SE (Freckles)
    Nazeen - Improved Eyes Skyrim
    r1goodwin - Diamond skin
    Lersy - Awesome nord preset which was a good jumping point to make these ladies. Thanks Again! 
    Spongeman131 - RANs HeadMesh Sliders for RaceMenu
    expired6978 - creating RaceMenu
    Kalilies - KS Hairdos SSE
    Nisetanaka & TheAbstract17 & JSPumpkinKing & VtheHeretic (and all others who helped) - The Amazing world of Bikini Armors and conversions, you guys rock.
    DeserterX - DX Armors
    Kala's Eyes  and Elf eyes - guidethisonekalaheria
    Black Vipers will - redtox, soereide93, and Fanfy along with all others.
    Champion of Azura - by egilvar, bodyslide by AmberHarmony
    HHaleyy - Fair Skin
    Daymarr - Demoniac Skin
    PB skin - PepperoniB01
    Bethesda
    PepperoniB01 - Thunder Thighs Skin
    ContentCat - Armors and Outfits
    Caenarvon  - Outfits
    Kofman77 - Bikini armor
    Melodic - Despair Armor
    Amsedillir - Soulless Armor
    Auburnsred CN's Fantasy and Demonic Eyes
    Acro748 - 3BA

     
     
     

    7400 downloads

    Updated

  5. Dibella's Love (Vow of Nudity) - Beta LE/SE/AE

    This voiced mod allows a female PC to take a Dibellan vow of nudity, which requires the PC to display her beauty (with body and head uncovered) in cities and towns. As the PC's level increases, nudity is required in more and more places, until eventually the PC must be uncovered everywhere but dungeons. In return for taking this vow, Dibella provides various blessings on the PC.
     
    The mod is intended to provide more immersion than other "naked gameplay" mods. NPCs will have random Hello and Idle comments on PC nakedness, and almost all NPCs (in areas covered to date) will have at least an initial dialogue comment on PC nakedness when spoken to. In addition, the mod is intended to provide quest awareness of a naked PC, affecting the dialogue in vanilla quests (in vanilla quests covered to date). The mod also has sex events and mini quests. There is also some creature content, but only if creature animations are enabled in the Sexlab MCM.
     
    The mod has been tested but I am posting it as a "beta" to get feedback on the design of the mod, in particular how it affects game balance. The gameplay aspects are complete, but the quests and dialogue are a work in progress (see first two spoiler boxes for current scope of quests and dialogue).
     
    To Start Quest:
    Read letter from Senna found on body of Dibellan pilgrim located on the road between the 3 starting standing stones and Riverwood.
     
    Recommended:
    New game start, as current locations and quests supported are the new game quests and locations. Also, there is currently no way to "undo" the vow.
     
    Vanilla Quest Awareness
     
    Locations and Events
     
    Powers, Abilities and Spells
     
    Magic Items Available
     
    Global Variables
     
    Credits:
    Voices - kamithemoon
    Ideas - eflat01, kamithemoon, killer905
    Playtesting - killer905
     
    Version History:
     

    2226 downloads

    Updated

  6. Sexy Adventures Ostim Patch

    Requirements
    Sexy Adventures
    OCum Ascended
    OStim Standalone, install even the optionals in step 2b.
    I use OSL Aroused but I assume other arousal frameworks that support Ostim should work.

    602 downloads

    Submitted

  7. Paradise Halls Enhanced - Botoxed

    This a botoxed version of the wonderful Paradise Halls Enhanced mod by @CliftonJD
     
    Installation:
    Download the installer from this page and install over PAHE. This mod only contains facegen meshes and textures. You can choose to install either or both the meshes and textures. Install the meshes if you want the Botox faces instead of Skyrim vanilla potatoes. Install the textures If you want the Botox makeup.  
    Requirements:
    Paradise Halls Enhanced obviously. Botox for Skyrim or you will be missing some hair textures. If you don't want the default Botox faces, only install the hair textures from it. KShair or you will be missing most hair textures.

    464 downloads

    Submitted

  8. Cyberpunk 2077 - Hairs and Lizzy's Headgear (Reupload)

    Another portion of AmaroWolf's mods. Since the permissions were open, but the mods were removed for no apparent reason, I decided to reupload them. Thanks BeyondTheBlackwall for sharing them with me.
     
     

    417 downloads

    Submitted

  9. Searaider Aspirant's Regalia CBBE 3BA

    This is a World of Warcraft themed armor made of authentic WoW transmogs into an armor set adapted for Skyrim SE.
     
    Mod features:
    Armor is light and has five pieces: Back, Body, Head, Hands and Feet. All pieces offer protection superior to any vanilla armor and are craftable at the forge and temperable at the workbench.
    Includes working ground models and comes with CBBE 3BA bodyslide files so you can build the armor to your characters 3BA shape.
    Female variant only. Male variant will appear as vanilla glass armor.
    Textures were remastered using AI software program Upscayl.
    Meshes was subdivided to increase polycount in Blender.
    Meshes shaders were smoothed to improve consistency of texture rendering.

    85 downloads

    Submitted

  10. PPA - Sound Replacer

    Louder, nastier vaginal, anal and oral penetration sounds for Procedural Penis Animations
     
    V3 uses config override, just plug and play. PPA 0.0.33 is required.
    Installation instructions still apply to V1 and V2.
     
    Sounds amplified in Audacity, adjust SoundVolumeScale values if it is too loud.
     
    All sounds taken from OpenNSFW Sound Pack

    14276 downloads

    Updated

  11. Legacy of the Dragonborn - Dickgirl & Femboy Painting Replacer

    Description
    A mod I wanted for very many years so I just went ahead and did it myself. Replaced every single painting used in LOTD with dickgirls and femboys. The paintings feature a majority of 2D art, but there's some NSFW 3D models. There's also more dickgirls than femboys.
     
    Do keep in mind, these drawings follow MY taste and it might not match yours. In particular:
    No futanari (no pussy); More dickgirls than femboys; Huge preference to shots that include the asshole; Majority are "power bottoms"; Some of the femboys are ambushes (muscular but feminine); One or two NORMAL dickgirls (not furry) but with a horse cock, when I found the art too good to pass on; No AI art used. Requirements
    Anniversary Edition, Dawnguard, Dragonborn DLC Legacy of the Dragonborn  
    Installation
    Should be as simple as throwing it into your favorite mod manager and activate it after LOTD.
     
    Credits
    Credits to a gigantic list of artists... most notably:
    2D - Chinbotsu (https://x.com/enmachinbotsu) 2D - Axred7 (https://x.com/axred7) 2D - Dross  (https://x.com/DrossDrawings) 2D - Dmitrys (https://x.com/dmitrys_futa) 2D - Tekuho (https://x.com/Tekuho1) 2D - Proado (https://x.com/proado_nsfw) 2D - Rampage (https://x.com/leedash0118) 2D - Aian (https://x.com/iron_paint) 2D - Bansanv3 (https://x.com/bansanv3) 2D - Log Dog (https://x.com/Loggus_doggus) 2D - Mogiki Hayami  3D - Guft Rup (https://x.com/guftrup) 3D - Femshoptop (https://x.com/femshoptop) 3D - RamFutaNSFW (https://x.com/RamFutaNsfw) 3D - zzzxxxccc (https://x.com/zzzxxxccc_18)

    454 downloads

    Submitted

  12. Animal Research Gay Edition

    This mod is a  Males Addon for Animal Research, by Griste And killer905
     
    Thank to For the mod, and for all the prevention to make the compatibility with the male player character. I've really apreciate it!
     
    I did not change the text,  I've only change the females character, with males character.
     
    This mod was created with skyrim 1.6.1170 version and it's compatible with Skyrim VR. 
     
     
     
    incompatibility ;
     
     As I've  already used High Poly Head, this mod who duplicate it, is not compatible with my mods. 
     
    REALORE MEN'S Skin Texture  https://www.nexusmods.com/skyrimspecialedition/mods/67029?tab=files 
    And of course all the CotR mods.
     
     
    Compatible with version 0.50.
     
    Enjoy
     
    Important : Don't forget to update the Meshes Files (not for the skyfurry NG)
     
    You need the original mod, "AnimalResearch 0.55 SE"  to work properly.
     
    And, to respect the hair work, of Tirwin, than, the mod authors, have worked on, I have prepared, a files with all the news hair styles corresponding to a male character playthrough.
     
    Installation: (The Normal Version 2 Files)
     
    1° Download and unzip the meshes files 
     
    2² Open the original mod files, and  drag the "meshes" files in the original mod. Overwrite it  with mine
    In; Animal Research 055 LE_SE_AE.7z\Animal Research 055 LE_SE_AE\20_SEAE_Files\Meshes 
     
    3° Deploy your mod manager. And download  Animal_Research_malesaddon.esp
     
    4° The Animal_Research_malesaddon.esp load after the animal research mod in your mod manager.
     
    This mod was created with skyrim 1.6.1170 
     
    Requirements
     
    High polyhead  Go on the VectorPlexis Discord, make a search there and download it,  link: https://discord.com/invite/H5PwsQTj2z 
    Fuz d-oh Ro:  https://www.nexusmods.com/skyrimspecialedition/mods/15109
    Face Discoloration Fix https://www.nexusmods.com/skyrimspecialedition/mods/42441
    Apachi hair & Apachi Hair Male https://www.nexusmods.com/skyrimspecialedition/mods/2014?tab=files
    Ks Hairdos & ks hairdos males https://www.nexusmods.com/skyrimspecialedition/mods/6817?tab=files
    Improved Eyes  https://www.nexusmods.com/skyrimspecialedition/mods/9141
    loks Eyes https://www.nexusmods.com/skyrimspecialedition/mods/49792
    Beards Of Power https://www.nexusmods.com/skyrimspecialedition/mods/42635
    Brows https://www.nexusmods.com/skyrimspecialedition/mods/1062
     
     
    New : SkyFurry NG (Only the one file)
    Don't download the meshes files you don't need it
     
    I changed all the characters to match the vanilla ones; they were all resized, stronger, taller, with no more dependency.
    I didn’t work with the SkyFurry NG Mod, so I don’t know what the characters will look like.
    I've respected the originals races for all.
     
    I have deactivated the wigs and the party masks, which would not have been compliant for this gameplay and were replaced by the outfit headman no hood.
     
    SkyFurry NG https://www.nexusmods.com/skyrimspecialedition/mods/116687
     
     
    And ... By Gristle 
     
     
    or  Traduction Française by Voltair
     
     
     
    Credit Bad Dog for the armors and clothes mods

    2075 downloads

    Updated

  13. Honey Select2 Costume Pack Vol.2 [HDT-SMP CBBE 3BA]

    Some of CostumeSets from Eroge Game 'Honey Select 2'
     
    -Support Bodyslide (Based CBBE 3BA)
    -All of costume Include Normal and H(Skimpy) both Type
    -Include
    Cyclewear, karate Dougi, Track Uniform, Jersey, Waitress,Dancer,Thief
    -Only Can get with AddItemMenu Things(https://www.nexusmods.com/skyrimspecialedition/mods/17563)
    Im Highly recommend Modex(https://www.nexusmods.com/skyrimspecialedition/mods/137877)
     
    If you wanna Support my work https://ko-fi.com/outlawer

    1064 downloads

    Submitted

  14. Uncle Aud's Diabolical Devices

    The first of hopefully many Diabolical devices from Uncle Aud's workshop.
     
    A vaginal piercing comprised of two bells on chains designed to torment the wearer.
     
    Instead of the classic devious vibrations this works on movement, walking is (almost) safe, running is risky and jumping should be avoided at all costs.
     
    The bells jingle gently when moving, a constant reminder of their presence.
     
    Instead of using Sexlab Arousal stimulation from the bells affects your control, it will slowly decline the more stimulation you recieve.
     
    Once control is lost a quicktime game starts, follow the prompts to succesfully achieve an edge or fail and recieve an orgasm.
     
    The only way to remove the piercing is to achieve 10 (can be altered in the MCM (Did I mention there was an MCM?)) but be warned the more edges you achieve since your last orgasm the harder it becomes.
     
    An orgasm resets the edge counter putting you back to square one and starts to enwrap you in ever increasing latex.
     
    Features
     
    Custom bell sounds that react to player footsteps and clang when jumping.
     
    SMP on the piercings
     
    Multiple custom values Control, Stimulation, Pressure, Speed all working in the background to give a unique experience.
     
    Over 2000 hand edited frames of video providing visual feedback and prompts adjusted to work both inside and out and tested with the latest version of Community Shaders (not required) for maximum compatibility.
     
    Stimulation bursts based on movement speed and sudden changes of direction.
     
    Configurable QTE game with hidden layers of complexity the further the player progresses.
     
     
     
    About AI
     
     
    I am not ticking the box for AI generation as all assets were either made or modified by me. However I made extensive use of both ChatGPT and Claude to write the papyrus scripts.
     
    I started of working with ChatGPT and moved over to Claude at about 25% of the mod made. 
    It was far more than just asking the AI to generate a script, I have spent a number of weeks brainstorming and fine tuning the scripts and developing new systems in colaboration specifically with Claude.
     
    I feel it necersary to explain the input of AI in this mod as I know that some people take issue with it however in my case it has allowed someone with my skill set to realise an idea using other skills that I don't possess.
     
     
    Current Version
     
     
    I'm calling this Beta 0.1, it's pretty much complete minus a few sound files I've still to add so this version is for  bug bashing and user feedback please feel free to suggest anything regarding this piercing, it's a bit too early to suggest ideas for other diabolical devices.
     
    Credit to Les Sucettes  for the smp bones and .xml on corset3
     
    Thanks too @Herowynne for early testing and bug bashing

    2196 downloads

    Updated

  15. Honey Select2 Costume Pack Vol.1 CBBE 3BA (Re-Upload)

    Some of Costumes from Eroge Game 'Honey Select 2'
     
    -Support Bodyslide (Based CBBE 3BA)
    -All of costume Include Normal and H(Skimpy) both Type
    -Include Hotel Concierge, Ridersuit, Vollyball Sport, Open bikini, Shibarikini(rope bikini)
    -Only Can get with AddItemMenu Things(https://www.nexusmods.com/skyrimspecialedition/mods/17563)
    Im Highly recommend Modex(https://www.nexusmods.com/skyrimspecialedition/mods/137877)

    i dunno why the original file is deleted
    and fixed some of Breast Clipping issue
     
    If you wanna Support my work https://ko-fi.com/outlawer

    1224 downloads

    Updated

  16. Sex Girl Canela Skin for COtR

    Last update of Skyrim special edition (1.5.97) not AE edition
    Latest SKSE64 for Skyrim SE (version 2.0.20)
    The presets can work on AE and LE version if you can find the same requirements.

    .....................................................FACE.....................................................
    Racemenu
    RaceCompatibility for Skyrim Special Edition
    COtR - HQ Characters creation addon
    BnP - Female Skin 
    BnP - COtR faces  
    Eye Normal Map Fix SSE
    The Eyes Of Beauty SSE
    COtR x The Eyes of Beauty - Updated Patch (esl version)
    Charmers of the Reach (CotR) - Racemenu Warpaints Tattoos Patch and Eye Fixes and Presets  
    Even More Brows - HPH - COtR (COtR version)
    Koralina's Makeup for COtR
    Koralina's Face Details for COtR 
    KS Hairdos

    .....................................................BODY(optionnal).....................................................
    Caliente's Beautiful Bodies Enhancer -CBBE-
    Female Hands Redone (use bodyslide to apply the sliders).
    NecDaz Feet (use bodyslide to apply the sliders).
    XP32 Maximum Skeleton Special Extended - XPMSSE
    FSMP - Faster HDT-SMP 
    CBPC - Physics with Collisions for SSE and VR
    CBBE 3BA (3BBB)
    My preset Bodyslide based 3BA "BomBassbody" (use bodyslide to apply the sliders).

    Optionnal if you want to apply my presets into any unique NPC:
     PROTEUS

    All the entire description with video support in my Discord channel



     
    swefrida
    m4mk203
    CoralineKoralina
    expired6978
    Dint999
    Xp32/Groovtama
    HydrogensaysHDT
    ousnius
    DenisWinter
    TMPhoenix
     LogRaam
    docteure
    PixelsSquared
    phenderix

    131 downloads

    Updated

  17. LamaKreis's Maidens of Skyrim - Wenya Follower (High Poly) CBBE - CBBE 3BBB (3BA) - UBE and BHUNP compatible (Part 9)

    Wenya started on Nexus in February 2021 and was originally supposed to get the most radical update. In the end, I decided to go with the revised original preset instead. I might upload the planned version here a little later as well, perhaps as a sister version to Wenya.   Wenya's Story

    Wenya was born in Arenthia as the daughter of a wealthy bow maker and trader.
    She had a happy childhood, safe and protected by her father's love. The
    close bond with him shaped her thinking and her view of the world,
    which was by no means well-disposed towards the Thalmor. The father had
    not forgotten the defeat in the war against the Altmer and so he only
    traded with the empire. His bows were in great demand all over Tamriel,
    which is why he traveled a lot and his daughter accompanied him. He
    passed on his craft knowledge to her and Wenya was an enthusiastic and
    docile student. The bow, which she always carried with her, was her
    masterpiece and of course her father also taught her how to use the
    weapon. Since her father had been doing business with the East Empire
    Company for a long time, she recently traveled to Solitude to discuss
    some details with the Vicci family. If you are visiting the capital at
    the moment, please stop by the Blue Palace. Wenya is probably sneaking
    around on the ground floor again, because she wishes so much to greet
    Elisif in person, but she doesn't dare because of her shyness...

      Name: Wenya
    Race: Wood Elf
    Weight: 100
    Body: The Nordic Bombshell Model Body 2.0
    Texture:  Demoniac v1.32 FMS CBBE/UUNP
    Combat: Archery and Fire Bolt Spell
    Location: Blue Palace, Solitude
    essential and marriageable        

    483 downloads

    Updated

  18. Zero Suit Samus Casual Gear CBBE 3BA

    This is the successor to my Zero Suit Samus Casual Gear and Mashup that I posted on the Nexus based on Samus Arans outfit in Super Smash Bros and that mod should now be considered depreciated with the release of this mod.
     
    Mod Features:
    Brand new meshes. Outfit now has four pieces that can be built in BodySlide and are craftable at the forge instead of the tanning rack and temperable at the workbench.
    Features CBBE 3BA Breast, Belly, Butt and Vagina Physics. Outfit pieces offer very good protection (considering they are basically covering almost nothing on your characters body).
    Lazy Heels is no longer a requirement for this mod. I built the foot model so that it works with standard vanilla alignment.
    Textures were remastered using AI software Upscayl.
    There is only one outfit now. No longer a standard and mashup version so number of outfit sets in this mod has been reduced from two to one.

    130 downloads

    Submitted

  19. Captured By The Thalmor: Southrange Gaol

    CBT: Captured By The Thalmor
     
    Captured By the Thalmor is a mod where your character is captured by the Thalmor (duh) and tortured for information. They want to know how Thorald Gray-Mane got out of Northwatch Keep, and you're the key to finding out. This roleplay-focused quest mod gives you multiple ways to respond--Will you meekly cooperate? Defiantly resist? Proclaim the gospel of Talos?
     
    Video Preview:
    (That's https://www.xvideos.com/video.ohpmumv155e/captured_by_the_thalmor_skyrim_sexlab_mod, if the embed isn't showing up for you)
     
    New Release, May 2026: CBT Version 1.5
     
    FEATURING:
    A female interrogator! Thanks to popular demand, you can now choose between Keldara (F) and Keldarin (M) to torment your character.  An MCM! I finally learned how to code a mod configuration menu. You can now enable/disable different torture methods, set the chance your character will be rescued, and more. New mechanics! The guards outside your cell can detect, scold, and punish you for casting spells or trying to pick the lock. Also, you now have some ability to pause the interrogation. Dozens of new lines, for both the player and NPCs! Bugfixes galore!  
    Details on all the changes are listed below, under "New in Version 1.5".
     
    PLEASE NOTE that I do NOT recommend updating CBT mid-quest. Some of the changes in 1.5 look minor on the surface but required a complete reconfiguration under the hood. You can install/update this mid-playthrough, but only if you haven't yet rescued Thorald from Northwatch Keep.
     
    What Makes CBT Special?
     
    It's 100% fully voiced! A handful of lines are spliced together from vanilla, but the vast majority were voiced by yours truly and then run through an ElevenLabs voice changer. (Apologies if you hate AI; I know it's not ideal, but I wasn't about to put my real voice on a LoversLab mod.) The interrogator will react to your dialogue and remember earlier incidents, affecting the choices you have when interacting with them. If you get caught in a lie, then the interrogator will be much less trusting later on. If you're defiant, they'll react differently than if you're meek and polite. There are several possible endings depending on how you respond. Will you be executed, released, or rescued? Try this mod a few different times and find out!

    How to Start

    This is a sequel to the vanilla quest Missing in Action. Complete that quest first. Once it's finished, go down to the Solitude docks; there will now be an Altmer "merchant" named Keldarin or Keldara hanging around near Jolf the boat guy. Talk to the Altmer, and the next time you go to sleep, the CBT quest will begin. Alternatively, there's an option in the MCM to start the quest.
     
     
     
    What's New In Version 1.5
     
    Male or Female Interrogator
     
    You can now choose whether you want your torturer/rapist to be a man or a woman! Both versions are fully integrated and 100% voiced; other than the voice, body, and name, you'll have exactly the same experience.
     
    PLEASE NOTE THAT YOU CANNOT CHANGE THE INTERROGATOR'S GENDER MID-QUEST. Because of the way I set the quest up when I was younger, dumber, and newer to modding, the gender is locked in as soon as Keldarin/Keldara first appears on the Solitude docks. You MUST choose the gender in the MCM before entering Northwatch Keep (if playing through the quest chain) or starting the quest manually. If you don't, the gender will be chosen for you. 
     
    Mod Configuration Menu
     
    CBT finally has an MCM! Settings now under your control include:
     
    Interrogator Gender: As mentioned above, you must set this before beginning the quest. NSFW content allowed: This is enabled by default, which means... Rape scenes are possible. (They can still be temporarily activated/deactivated in the "Torture Methods" tab, but NSFW content must be allowed in order to enable rape scenes.) The guards will sexually harass you while you're in your cell. (These are just comments, though; no SL scenes will actually play.)  Your character will be stripped naked upon being abducted. (While the first two mechanisms can be turned on/off at any time, this only runs once, at the moment when you're first captured. Changing the NSFW settings after that point will have no effect on your character's clothing or inventory.) Start quest:  Ticking this box will immediately start Captured By The Thalmor, which will let you bypass Missing in Action entirely Allow player to feign unconsciousness: This is a new feature that's enabled by default--if you pretend to pass out, they'll take you back to your cell. Now you can enter your cell any time you want, rather than waiting for your health to drop or by picking the right combination of dialogue responses. This allows you to pause the interrogation at any time and take a break/debug issues/try to escape. 
    If you want a super hardcore experience, though--where you're not done until the interrogator decides you're done--you can disable this option. Chance player will be rescued: The original version of CBT had a random chance that the player would be rescued, which would sometimes result in the player getting rescued before really getting a chance to play, and other times would result in the player not getting rescued for ages. There's now a slider that allows you to set the percent chance that you'll be rescued every time you sleep--by default, set to 20%. If you NEVER want to be saved from your torment, you can set this to 0%; if you want out immediately, set this to 100% and then sleep in the bed in your cell. Torture Methods: The quest includes multiple possible torture methods, including: Being beaten with a mace Being carved up with a knife Being pummeled with bare fists Being burned with fire magic Being frozen with frost magic Being electrocuted with lightning magic Being attacked by a familiar Being poisoned Being hit with a fear spell Being soundly whipped Being magically choked And (of course!) being violently raped

    All of these methods can be activated/deactivated within the MCM (although please note that you must have at least one non-rape option active for the mod to function correctly).  
    Lockpicking and Magic Detection
     
    The guards outside your cell are now capable of noticing that you're casting a spell or trying to get your door open--so make sure you're sneaky about it! The first few times they catch you using magic or picking the lock, they'll issue a verbal warning; after that, they'll interrupt you. (This is more for immersion's sake than to add any significant challenge; avoid doing it while the guards are staring directly at you, and you'll be fine.)
     
    New Dialogue
     
    A handful of new random lines have been added to the guards and to the interrogator, sprinkled throughout the quest. (Also shoutout to sorrowsmith for suggesting a good player retort to the first question!) 

    The biggest addition is a small scene that will begin when Keldarin/Keldara enters bleedout, giving you the opportunity to deliver some cool one-liner before murdering them. (It's entirely optional, though, and can be bypassed completely by killing them outright. If you want to talk to the interrogator before murdering them, make sure to kill them slowly 😁)
     
    Bugfixes
     
    Better support for custom races I finally worked out the three-dot-dialogue-on-unrelated-NPCs issue; thanks to Crowzm on Nexus for pinpointing the source of the problem Improved the combat grunts/death cries for custom-voiced characters--no more weird Elevenlabs moans Fixed clipping and z-fighting in a few spots Various other minor improvements  
    Required Mods
     
    SexLab (and its requirements). That's it.
     
    While not a hard requirement, SSE Engine Fixes is highly recommended; it helps improve stability and prevents random crashing on larger modlists.

    If you want a version with NO requirements at all, there's a SFW version over on Nexus. (You won't be able to access the MCM unless you have SkyUI, though.)

    Recommended Mods
    Some Collision Camera: This mod was designed to be played in either first OR third person, but if you play in third person, you'll probably want something that will allow you to better view your character while they're shackled in place--the furniture camera can be wonky in vanilla. Some Collision Camera is the one I tested with and it worked perfectly, but there may be other mods that do just as well. (Unfortunately I can't recommend SmoothCam since it's been reported to cause problems with NPC detection of the player.) Report Talos Shrines to the Thalmor: Really only necessary if you plan to cooperate with the interrogator. If you're well-behaved and cooperative, you'll be asked to become an informant for the Thalmor, but CBT doesn't actually provide a way to do that. This mod does. Survival Mode Settings: CBT can get very difficult very quickly if you play on AE Survival Mode, as you'll likely be forced to go without sleep for a while. Survival Mode Settings can make it easier. (I don't use other survival mode mods, but you may want to keep the sleep deprivation in mind for those as well.) Speechcraft Randomization: Makes the interrogation just a little bit trickier to navigate. Vanilla speechcraft is an automatic fail when your speech is below a certain level and an automatic pass when it gets above a certain level. You can use this mod if you want to shake things up a bit--keeping you guessing about whether your lies and persuasion will actually work or not.
    Compatibility
     
    Unfortunately not compatible with LE. You'll need at least SE to play this mod. Does not touch the vanilla prison system, so should be compatible with any prison-related mods. Any followers will be dismissed when you're captured, so I recommend leaving them somewhere you know you can find them before starting.  This mod is compatible with AE survival mode (and most other survival mods) but playing with them will make surviving the torture and/or escaping from the prison MUCH harder. Your cell will contain a small water source and 1-2 pieces of food, but you won't get much more than that, and resting will be pretty much impossible. (Think of it as *extra realism*.) This mod should be usable in a load order alongside Devious Devices and similar mods, but I do NOT recommend playing through it while locked in any DD device. Get out of your bondage before starting the quest. This mod temporarily tweaks the player-death mechanics so that if you take too much punishment, you'll pass out instead of just dying outright. If you play with a death-alternative mod (e.g. SexLab Defeat), I recommend temporarily disabling it while using CBT, and reactivating it after you get free. SmoothCam has been reported to interfere with NPC forcegreets/detection of the player. Use at your own risk. JK's Solitude Outskirts appears to interfere with the placement of Keldarin at the very start of the quest (at the Solitude docks).

    Q & A

    Can I install this mid-playthrough?
    As long as you haven't yet rescued Thorald from Northwatch Keep, yes! If you have already rescued him, then you can start the mod via the MCM, or by entering "setstage cbtsintro 0" into the console.

    Why does my health keep going down?
    Every time you are tortured, your maximum health, stamina, or magicka will be slightly decreased. The debuff will persist until you sleep outside the Thalmor prison.
    This is meant to give you a reason to want to avoid being tortured--if you end up taking too much punishment, escape will become difficult or downright impossible.

    Okay, I'm tired of being in jail. How do I get out?
    Cooperate with the interrogator, duh. It's not a lie when they say that if you tell the truth (and mind your manners) you'll be released.

    But the Thalmor suck and I don't WANT to cooperate?
    Okay, fine, you've got other options. One is to try to escape from your cell in between interrogations. If you manage to pick the lock, kill your jailors, and then fight your way out, you'll be home free. Much like the Cidnha Mine quest or literally any other prison escape, this will be easiest for gear-light builds (mages, stealth gods, punchcats) and harder for characters that rely on a specific weapon or armor item. Also this will be much easier at higher levels and pretty darn near impossible at lower ones.
    If you refuse to cooperate and can't escape (or if you're too much of an asshole) your captors may decide to drag you outside and shoot you. When that happens, my advice is to run like hell.
    And if none of the above applies--you broke all your lockpicks but keep stringing the Thalmor along with no end to the interrogation in sight--there's a random chance you'll get rescued. You can set the odds of that rescue in the MCM; put the slider at 100% and it'll happen the next time you go to sleep.

    Where'd my gear go?
    A chest in the prison's armory. If you escape, you'll pass it on the way out; if you get rescued or cooperate enough to be released, your items will be automatically returned.
    You're in a little more trouble, though, if you piss your captors off enough for them to try to kill you. When you escape execution, you'll be stranded in the wilderness with no gear. The GOOD news is that there's nothing stopping you from returning to the prison later to exact your revenge and grab your stuff.

    Something has gone horribly wrong?
    I recommend reverting to a previous save. The mod is supposed to auto-save periodically, but it won't hurt to make a hard save before you start the quest and occasional quicksaves along the way. (That's a good practice when working with quest mods generally, TBH.)

    What race/gender is this intended for?
    Whichever one you want! None of the sexual comments are gender-specific, and any race can choose to resist the Thalmor.
    You can now also choose between a male interrogator/rapist (Keldarin) and a female one (Keldara).

    Is there any actual CBT?
    Well... it's not NOT a cock-and-ball torture mod. You can always play a male character, stay in first-person view, and imagine that every mace blow or electrical shock is aimed at your nuts.
    There is no cognitive behavioral therapy in this mod, unless you're the type of person who has ever thought "Being tortured by a hot elf would fix me." If that's the case, I have great news.

    Troubleshooting
    If your character doesn't get placed into the shackles correctly, reload and try again; that'll fix the problem in 80% of cases. (You can also try "Feign unconsciousness" to get returned to your cell and then sit in the chair there; that fixed the problem in every case I've encountered, but is a little more of a pain.) (By "more of a pain" I mean that you may have to use TFC in order to get your character correctly pointed at the chair.) Try not to exit dialogue with the interrogator! If you don't want to say anything, pick the "Remain Silent" option instead. Closing out that conversation can leave you stuck in chains and unable to continue the quest; the interrogator is set to forcegreet you every so often as a failsafe, but the AI doesn't always trigger consistently. There is a bug where getting attacked by the familiar may start combat/re-enable your controls. If that happens, do NOT try to fight or move. The familiar is on a timer and will disappear after a few seconds, but leaving the shackles when the game doesn't expect you to leave the shackles will break things. If the Sexlab scenes aren't playing (after it displays the message "Keldarin begins undressing") then try opening/closing the console or MCM once or twice. It may take a few seconds. You must have at least one aggressive animation enabled for the rape scenes to play; basic SexLab contains a couple by default but you can add animation packs to make things more interesting. I recommend FunnyBiz' or Billyy's Rape Redux. If you're playing as a male character with a female interrogator, you'll likely need to do some tweaking in the SexLab MCM settings to make sure that the interrogator rapes you rather than you raping her. You can handle this by only having "femdom" animations toggled on, but I know there aren't that many of them out there My personal configuration is to go to the Sexlab MCM Animation Settings tab, then deselect the "Filter Gender Tags Animations" option and select both the "Adjust Victim/Aggressor Positions" and "Females use strap-ons" options. This will allow animations that are designed as "male aggressively penetrates female" to instead play as "female aggressively pegs male" instead.)
    If you are not being correctly teleported to and from your cell: You can try entering "player.moveto XX1c9913" in the console. The "XX" part will be two digits that correspond to your specific load order; the easiest way to find out what they are is to click on an object you know is in the mod (say, Keldarin/Keldara) and then copy the first two numbers from the RefId. That command should teleport you into the player cell, and sleeping in the bed there should teleport you into the interrogation chamber. Some users also have reported that teleportation problems (i.e. when the player sleeps, or passes out from the torture) can be resolved by installing SSE Engine Fixes, parts 1 and 2.
    What's Next?
    Now that the female interrogator has been implemented, I'm hoping to make a player-enslavement expansion that can tie into this quest. I'm also thinking about "Captured By" mod for other factions (e.g. the Dark Brotherhood). 
     
    Credits
     
    Shoutout to Seijin8 and Gristle for coding tips--this mod required more scripting than I'd ever done before lol. Any mistakes are mine alone.
     
    All voices are either original to the game or done by me (run through an Elevenlabs voice changer).

    All new sound effects are from FreeSound. Specific files are:
    anton_stikken4.WAV by Anton -- https://freesound.org/s/23093/ -- License: Attribution 4.0
    Whip Crack 01.wav by CGEffex -- https://freesound.org/s/93100/ -- License: Attribution 4.0
    Mixed Whip Crack 1.wav by peterbullmusic -- https://freesound.org/s/351267/ -- License: Creative Commons 0
    Whip slash by Valerie-Vivegnis -- https://freesound.org/s/761411/ -- License: Creative Commons 0
    Whip Crack.m4a by SciFiSounds -- https://freesound.org/s/529925/ -- License: Creative Commons 0
    Whip #3 by Universfield -- https://freesound.org/s/758830/ -- License: Attribution 4.0
    Whip Crack.mp3 by CGEffex -- https://freesound.org/s/89770/ -- License: Attribution 4.0
    Creeper short 1 (resonant dark) by EphJayMusic -- https://freesound.org/s/746624/ -- License: Attribution 4.0
    Eerie drone by jhumbucker -- https://freesound.org/s/193821/ -- License: Creative Commons 0
    Horror Background Atmosphere #6 by Universfield -- https://freesound.org/s/730121/ -- License: Attribution 4.0
    Cries of the Damned - Wails from Hell by DeqstersLab -- https://freesound.org/s/746494/ -- License: Attribution NonCommercial 4.0
    FIREBurn_Burning Swaying fire.Crackling.Roar Of Flame 2_EM_(4lrs).wav by newlocknew -- https://freesound.org/s/626277/ -- License: Attribution NonCommercial 4.0
    Wails_ses2.wav by freesound -- https://freesound.org/s/25287/ -- License: Creative Commons 0
    Sam Qualiana from freesound.org (https://freesound.org/people/Capt_Bligh1/sounds/690702/)
    Doctorsex on freesound.org (https://freesound.org/people/doctorsex/sounds/699908/)
    Mr. Fossy on freesound.org (https://freesound.org/search/?f=grouping_pack%3A%2230826_Voice+%E2%80%93+Male+Grunts+and+Screams%22)
    jorickhoofd on freesound.org (https://freesound.org/people/jorickhoofd/sounds/180350/)
    Volonda on freesound.org (https://freesound.org/people/Volonda/sounds/439518/)
    screaming_male_effort.mp3 by GabrielaUPF -- https://freesound.org/s/220285/ -- License: Attribution 3.0
    male_grunts.wav by that_sound_guy92 -- https://freesound.org/s/442716/ -- License: Creative Commons 0
    marc3122 (https://freesound.org/people/marc3122/sounds/556976/?)
    tvilgiat https://freesound.org/people/tvilgiat/sounds/462932/
    SnowFightStudios https://freesound.org/people/SnowFightStudios/sounds/643669/
    stemsandseedspod https://freesound.org/people/stemsandseedspod/sounds/513235/
    RepDac3 https://freesound.org/people/RepDac3/sounds/477756/
    pseudonymian https://freesound.org/people/pseudonymian/sounds/573096/
    AlesiaDavina https://freesound.org/people/AlesiaDavina/
    newlocknew https://freesound.org/people/newlocknew/sounds/653070/
    RutgerMuller https://freesound.org/people/RutgerMuller/packs/6623/
    JuanFG https://freesound.org/people/JuanFG/sounds/471953/
    montblanccandies https://freesound.org/people/montblanccandies/sounds/332044/
    XfiXy8 https://freesound.org/people/XfiXy8/sounds/467293/
    Male Coughing by beyercreative -- https://freesound.org/s/774818/ -- License: Attribution NonCommercial 4.0
    Choking by Bowesy -- https://freesound.org/s/522163/ -- License: Creative Commons 0
    Metallic Gate Sounds by eqavox -- https://freesound.org/s/683954/ -- License: Creative Commons 0
    Intense Sizzling 4 by Yoyodaman234 -- https://freesound.org/s/334672/ -- License: Creative Commons 0
    Intense Sizzling 1 by Yoyodaman234 -- https://freesound.org/s/334675/ -- License: Creative Commons 0
    Rachet_Joint by SoundsofTheMachine -- https://freesound.org/s/789060/ -- License: Creative Commons 0

    12685 downloads

    Updated

  20. Blind Oath's Hexflame Raiment CBBE 3BA

    This is a World of Warcraft themed ensemble designed specifically for the CBBE 3BA body type for Skyrim SE
     
    Mod Details:
    Armor is heavy. lighter than any vanilla heavy armor with significantly better protection than daedric or dragonbone armor.
    Comes in five pieces: head, torso, back, hands and feet.
    Can be crafted at any forge with no prerequisite requirements and tempered at any work bench.
    Designed for CBBE 3BA body type. No male variant available.
    Textures were remastered using AI software Upscayl.

    113 downloads

    Submitted

  21. Sin'Dorei Spellbreaker Raiment CBBE

    This is a World of Warcraft themed armor design that has been adapted as an armour set for your character in Skyrim SE.
     
    Mod features:
    Armor is heavy and contains five pieces: Head, Torso, Back, Hands and Feet.
    Armor is designed for the CBBE body type and comes with BodySlide files so you can build the outfit to your characters desired shape.
    Armor torso piece has zap sliders so you can remove one or several armor pieces to have a lighter raiment type look. Screen shots show armor when all sliders are zapped.
    Offers protection better than any vanilla armor but not to overscaled so armor isn't wildly overpowered.
    All pieces are craftable at any forge and temperable at any workbench with no prerequisite requirement. Armor reciepe does require some rare materials to make but it won't be overly difficult to craft each piece.
    No male variant available. Armor will appear as vanilla ebony armor to male characters.
     Sin'Dorei Spellbreaker textures were remastered using AI software Upscayl.
     
    Requirements:
    BodySlide and Outfit Studio: Absolutely necessary to build outfit morphs to your characters shape.
    Caliente's Beautiful Bodies Enhancer: Hard requirement. This outfit is specifically designed for that body type.
     
    Note:
    Armor doesn't include any physics bones on the outfit meshes so you technically don't need CBPC or FSMP for this outfit to work (although its safe to say most mod users have these mods anyway).

    179 downloads

    Updated

  22. Ornate Azuresteel Vestments CBBE

    This is a World of Warcraft themed armor set that I adapted for your use on your player character in Skyrim SE.
     
    Mod features:
    Contains five outfit pieces: Head, Torso, Back, Hands and Feet.
    Adapted for the CBBE body type for Skyrim SE. No armor or cloth physics.
    Armor is Light and offers better protection than any vanilla armors.
    Armor can be crafted at any forge and temperted at any workbench with no prerequisite requirements.
    BodySlide files are included with mod so you can build the outfit to your desired BodySlide preset.
    No male variant for this armor currently available. It will appear as vanilla glass armor to male characters. Comes with working custom ground models for female characters.
    Cloak features HDT physics.
    Textures were remastered using AI software Upscayl.

    63 downloads

    Submitted

  23. Savage Deathbringer's Bulwark CBBE

    Mod features:
    Armor is heavy and contains the following: Ciclet, Helmet, Cuirass, Gauntlets, Boots, Cloak, Longsword, Shield.
    All are craftable at any forge with no prerequisite requirements and the armor pieces and shield are temperable at the workbench. The sword is temperable at the sharpening wheel.
    Made for the CBBE body type so you'll need that mod for this to work. Comes with bodyslide files so you can build the outfit pieces to your characters custom shape. No physics on the outfit and no male variant available. For males the pieces will appear as vanilla steel armor pieces. Weapon and shield are available for both sexes.
     Textures remastered using AI software Upscayl.

    58 downloads

    Submitted

  24. Sanguine Dreadlord Hauberk CBBE 3BA

    This is a World of Warcraft themed armor set made from authentic WoW meshes for your player character and followers in Skyrim SE.
     
    Mod Features:
    Armor is Heavy and comes with a Sword and Shield as well. There are 5 armor pieces not including the shield: Head, Back, Torso, Hands and Feet.
    Armor offers protection far superior to any vanilla armor and sword does 50 base points of damage. Can be tempered and any work bench.
    Armor is only craftable at the Lunar Forge at night between the hours of 8:00 pm and 6:00 am.
    Other than only being available at the Lunar Forge at night there are no other requirements to craft the armor pieces or weapon. You just need the ingredients to craft each item.
    Comes with CBBE 3BA BodySlide files so you can build the outfit to your characters shape.
    Textures were remastered using AI software program Upscayl.

    196 downloads

    Updated

  25. BLS Loading Screen

    This is a Mod created Exclusive for - Blood and Lust (NSFW - Sexlab) - on Nexus.

    Mod Collection: www.nexusmods.com/games/skyrimspecialedition/collections/5o4jdm/revisions/4

    THIS MOD WAS MADE FOR (16:9) - 1600x900 MINIMUM!
     

    2662 downloads

    Updated

×
×
  • Create New...