Jump to content
Sub Category  

These Skyrim mods are of a non-adult nature.

Select a subcategory to view available files.

Files From Subcategories

  1. YPS Thought Framework with Voiceovers (YTF)

    YPS Thought Framework with Voiceovers (YTF)
     

    YTF is a framework mod featuring "thoughts" that appear as notifications and (optionally) as voice-overs.
    Works for both LE and SE.
     
    The following conditions may trigger "player thoughts":
    LocationTypes Certain player conditions: flying, incombat, onmount, running, sneaking, sprinting, tresspassing, weapondrawn, swimming, sitting, hasnogold, hasfollower, etc... (worn) armor keywords Papyrus (StorageUtil) variables set by modders any combination of the above conditions, linked with the operator & ("and"), | ("or"), or negated with the operator !  
    Fully customizable by the user simply by editing some text files.
    Voice-overs can be added/changed/removed simply by dropping the wav files into a folder and editing one text file.
     
     
    Instructions for Modders
    First read the FAQ for players below to understand how it works.
    To use the thoughts system for your mod, download the script ypsThoughts.psc, rename it and attach it to a quest of your mod. Make any necessary changes (you might want to change the json file path names in the first lines). Autofill all properties. Then make a script in your main mod call the function Playthought() at the desired frequency. It is advised to add an MCM option to turn the thought system on/off, and to set the frequency.
     
    Another feature is to directly call the function playthoughtchoice(), to play a specific thought. This can for example be used to add voiceovers to quest journal entries.

    The command to set a storage value is:
    StorageUtil.SetIntValue(None, "<papyrusvaluename>", 1)
    and the same command with 0 to turn it off.
     
    It is recommended each mod has its own thought conditions file (e.g. ypsThought_conditions.json) and thought database (e.g. ypsThought_male_database.json)
     
    To use sounds: If you want to use a reasonable number of sounds for your mod (up to a few thousand), it is recommended to channel them through the existing ypssounds.esp.
    I can reserve a sound range in the file for you.
    If you need an extremely high number of thought sounds (>10000), please send me a PM, and we will work something out.
     
     
    FAQ for Players
    Q: What is the YPS Thought Framework (YTF)?
    A: The Player Thought System will from time to time show certain “thoughts” depending on conditions defined in a configuration file. The purpose is to add more immersion to the game. It can also be used to simulate aspects of mind control.
     
    Q: Do I need to install the YTF framework?
    No. It is sufficient to install one single mod that includes YTF (see list below). This will allow you to configure "thoughts" for any mod you have installed (not just the mod that has YTF included).
    You can install multiple mods supporting YTF - modders will take care that they won't conflict each other.
    The files in the download section here are for modders only.
     
    Q: Which conditions are available?
    A: The system may react to general player conditions (running, swimming, fighting…), location types (city, dungeon, wilderness…), keywords (of items currently worn), and StorageUtil variables set by a mod.
     
    Q: The system is a nice idea, but the thoughts do not match my playing style.
    A: You may configure your own thoughts. Open the file \SKSE\Plugins\ypsThoughts\ypsThought_(fe)male_database.json, where you can change, add or remove thoughts just as you like. There are two files, one for male and one for female characters. You are encouraged to share your “thoughts” with the community. Every small contribution helps.
    But when editing the json files, remember to make backups of your modifications, as they might get overwritten when updating the mod.
     
    Q: How is determined, which thought is played?
    A: The thought system mod will go through all conditions defined in the file \SKSE\Plugins\ypsThoughts\ypsThought_conditions.json, then pick a random condition that is currently true, and finally play a random thought from the thought database.
     
    Q: Can I change the frequency of a single thought?
    A: The mods you use should have a slider in MCM affecting the frequency of thoughts in general. To change the frequency of a single specific thought, you can repeat the same thought string several times and/or add empty thoughts “” to the thought database.
     
    Q: How to use the StorageUtil variables?
    A: They are found in the section “papyrusvalues”. These variables can be set by modders. There are over 100 papyrus values predefined by YPS, matching certain YPS conditions. You can also add papyrus values from other mods.
     
    Q: What are the location conditions?
    A: These conditions begin with “LocType” and match any location type in vanilla Skyrim. Here is a full list:
    Furthermore, the thoughts system accepts the “LocTypeWilderness”, which does not have to appear in the list.
     
    Q: What general player conditions are available?
    A: These conditions begin with a $ sign. Currently available are:

    These are hard-coded.
     
    Q: What about item keywords?
    A: These keywords begin with the # sign and will be valid, if the player is currently wearing an item with the keyword. You may add as many additional item keywords to the list as you like. You can use item keywords from any mod you have installed, not just vanilla Skyrim and YPS.
     
    Q: What about the “thoughtconditions”?
    A: This is a powerful advanced feature. You may take any number of conditions (StorageUtil, Location, Player conditions, Item keywords) and combine them with the operators “&” (“and”) as well as “|” (“or”); each condition may also be prefixed with the operator “!” (“not”). Brackets are not allowed. The thought will then only be played if the logical combination is met.
    For example: Thoughts with the condition "loctypedungeon&$isoverencumbered&!$isincombat" may be played if (1) the player is in a dungeon and (2) is overencumbered and (3) is currently not in battle.
    The conditions used here do not have to appear in the above conditions list. Note that you have to define corresponding thoughts for the whole combination in the thought database.
     
    Q: What is the hierarchy of these logical operators?
    A: The "!" operator is linked directly to the following single condition. The “|” operator has higher priority than the “&” operator. For example, the condition items: !A&B|!C&D are evaluated as (NOT A) AND ( B OR NOT C ) AND D.
     
    Q: Now I added a lot of my own thoughts to the thought database, but the thoughts aren't showing up at all.
    A: Be aware of the json syntax. It is very easy to miss a bracket or to add an unneeded comma. I recommend using a json syntax checker like https://jsonlint.com/ . Furthermore, all conditions listed in the thought database must be written in lower case characters.
     
    Q: Can I add more voice-overs?
    A: Definitely! Adding your own voice overs is as easy as follows:
    Record the voice to a wav file, give it a 5 digit name with leading zeroes (e.g. 01737.wav). (If you care: Sound quality should be PCM516 LE 48 kHz, 16 Bit, Mono. Other sound qualities might also work, just try.) Place it into the folder data\Sound\fx\ypsSounds (use new numbers for new sounds) Add the number in square brackets (e.g. "[01737]") to the corresponding thought in the thought database json. Done! Currently the limit is at 32767 voices. Sounds number 00001-05999 may be used freely for female thoughts. 06000-08999 should be used for male thoughts; 09000-10000 are reserved for YPS internal use. 10001-32767 are reserved for future uses.
    The order of the numbers does not matter, but better avoid making it too messy.
    You are very much encouraged to share your "thoughts" and/or voice-overs with the community.

     
    Mods that include YTF:
    YPS Immersive Fashion Full version (needs SL and DD) upcoming: Yps Immersive Fashion Lite version (SL and DD not needed)  
    Disclaimer:
    - may only be used in conjunction with other mods if they are all legal in your region or country
    - may not be posted or reposted without permission on a website other than LL (or a dedicated successor site)
    - may only be distributed free of charge
    - you may modify and use the contents of this mod for your own mod, as long as you give proper credit, and distribute your mod for free
     

    317 downloads

    Submitted

  2. Skyrim Save File Sorter

    This is a simple Python script that will sort the contents of your saves folder so you can easily pick out saves/characters you want to keep or get rid of. Simply run the script, paste in the path to your saves folder, paste in the path to where you want your saves to be sorted, and let it do its thing. Made and tested with Python 3.11, but there's no reason it wouldn't work on earlier versions too. The only external library it uses is tqdm to show progress bars, but if you don't feel like installing that then it'll run just fine without.
     
    I've also included an exe version, but it was made with auto-py-to-exe so your antivirus will probably throw a hissy fit about it (which is a good thing. You really shouldn't be running random executable files you find on the internet). Probably not worth the trouble.

    28 downloads

    Updated

  3. World of Rudra - NPC Overhaul

    Requirements


    World of Rudra by Bee9999
    English Grammar Fix by sa547
    New Animals for the World of Rudra Full Version by gg77


    If you have already installed the mod, make sure you have used the
    Grammar Fix from sa547. I used this esp for my mod. There are several versions of
    World of Rudra out there, such as: v.1.8.4. or v.1.75. As far as I know, it doesn't matter which
    one of both you install. The only important thing is that in this case you use the esp from sa547.

    You can move everything into a folder if you want, make sure my mod comes last and overwrites everything else.

    Or load my mod after World of Rudra / English Grammar Fix / New Animals for World of Rudra.


    Features


    - changes the face of ~60 NPCs
    - changed some voices, outfits and packages
    - fixed rainy weather in Lavender Villa
    - added over 60 new soundtracks to the mod




    Installation



    Install these mods with your mod mananger.

    World of Rudra + English Grammar Fix + New Animals for the World of Rudra   Install both parts of my Overhaul afterwards with your mod manager.  


    Issues


    Some characters' beards float a little above their faces if you look very closely from the side. I only fixed this for Akbar and Iben now. I'll patch this later, will be safe to update midgame.
    This isn't game-breaking and does not lead to crashes.




    Mods


    To get the same result as in the pictures, install these mods.


    Vitruvia Skin
    Leyenda Skin with Alternative Face Option
    Rudy ENB 3.5 (315)
    Kwanon ENB


    Link to Nexus Version
    Link to all my other mods
    Link to my old mods

    Credits


    World of Rudra - by Bee9999
    New Animals for the World of Rudra - by gg77
    (English Grammar) More Coherent Fix for The World of Rudra - by sa547

    Apachii Sky Hair - by Apachii
    KS Hairdo's - by Kalilies
    Cherry Eyes - by CherryMods
    Eyes of Beauty - by LogRaam
    Brows - by Hvergelmer


    A big thank you to all the composers of the beautiful soundtracks, which enrich the mod so much.  

    84 downloads

    Updated

  4. Objects Make Noise

    This is a personal mod I use that makes all doors, activatables and containers make noise when you interact with them that is unless you have the Quick Hands perk. It does this by an invisible explosion that gives off a detection event on par with a sword swing every time you interact with something. Don't worry. You can still flip off Nazeem and the guards won't notice.
     
    It only effects the player(As far as I can tell). I never tested it with followers and I never plan to as NPCs are finicky as is.
     
    Should be SE compatible but I never tested it.

    78 downloads

    Updated

  5. NEO Selene Boots (Nioverride High Heels version) for NEO Selene Outfit UNP (LE) CBBE 3BA (SE)

    Hi all, I had a request to make this for another forum member and figured I should release it on here in case others might like it too.
     
    The problem: The original boots have high heels but are made with no "Nioverride" adjustment, so they make the character's legs look stubby since the bottom of the heels are where the foot heel should be.
     
    This mod fixes that by moving the boots down, re-weighting them to a high heel foot shape, and adding a Nioverride adjustment node.
     
    Skyrim LE (UNP) and Skyrim SE/AE (CBBE 3BA) versions, make sure and pick the right one for your game version.
     
    Requirements:
     
    NEO Selene Outfit
    Nioverride/Racemenu (depending on which game version).
     
    Installation:
     
    Merge this mod into your NEO Selene outfit mod (it shouldn't overwrite anything).
    Build with bodyslide.
    Done.
     
    If you want to adjust the "highheel offset", open the CalienteTools\BodySlide\ShapeData nif file in nifscope.
    LE: edit the NiStringExtraData node in the boots shape, changing the 4.0 to a different value.
    SE: edit the NiFloatExtraData HH_OFFSET "Float Data" in the boots shape, changing the 4 to a different value.
    Build in bodyslide.
     
    Enjoy, and thanks to @Mookeylama for requesting it, otherwise it wouldn't exist!
    Credit to NEO for making the outfit in the first place.

    131 downloads

    Submitted

  6. Tombstone - Unique two-handed melee weapon

    I am disabling comments because I do not have the emotional maturity to handle the average LoversLab user without saying something I might regret.
     
    If you encounter bugs, please file a bug report, but do not PM me if you cannot find the weapon or have criticism or suggestions. I don't really care.
    This mod took me six days of constant work and it's not done. Half of the scripts aren't working (which is good because there are only two).
     
    Description
    
    This mod adds a custom modeled, custom textured two hand melee weapon to Skyrim.
     
    Features
    4K diffuse, 2k-1k normals and speculars.
     
    Most weapons don't make use of specular maps.
     
    Unique enchantment effects - deals normal frost damage, 40 points over 4 seconds (10/s) to Health and Stamina to normal enemies, and an additional 80 points over 8 seconds (10/s) to undead, with special visuals.
     
    It does 64 base damage, much higher than Daedric Warhammer base of 27. It has a stagger magnitude of 3.5, and should stagger most enemies that can be staggered.
     
    However, due to being a massive lump of stone, it swings very, very slowly no matter how skilled you are at using both your hands.
    It has 2000 enchant power, at 10 power per attack, so it has 200 attacks before it runs out of enchantment power and needs to be recharged.
     
    What is?
    The weapon is simply called Tombstone. It's a decorative gravestone, quite literally.
    The Daedric script on the blade reads as follows:
     
    Here lies the mighty warrior
    Whose valor knew no bounds
    In battle they were unmatched
    A legend in their time
    Rest now noble spirit
    In the embrace of eternal peace
    Let your name echo through the ages
    As a symbol of courage and honor
    May the winds whisper your deeds
    And the stars guide your journey
    To the realm of tranquil slumber
    Where heroes rest for eternity
     
    Where can I find this weapon?
     
    You can find it in a new small building south-ish of Durnehviir's word wall. Be warned, it's protected by quite a difficult guardian.
     
    Extra?
    If you like my work you can throw me a bone and subscribe to my Patreon.
     
    Permissions
    All permissions for this file are completely closed. You may not do anything with this file other than download and use it. No reuploading, no modification, no translation, NO. I said no. Nope. NO. Bad kitty. I said no.

    14 downloads

    Updated

  7. Pet The Freaking Dog Already

    a small animation mod that lets you pet canines (activated by dialogue)
    2 dog/wolf animations
    1 fox animaton

    276 downloads

    Updated

  8. Simply Hide

    Have you ever wanted to hide in barrels like a sneaky bastard? Of course you do. You're here ain't ya?
     
    Well this mod doesn't do that. But it does do the next best thing. Whenever you activate a large container while sneaking you have the option to hide thus turning you invisible at least until you move again... or murder someone or steal all their belongings.
     
    The mod isn't perfect. This is merely a proof of concept. People will still know it is you if they bump into you so try to stay out of the way. The reason for making this mod is because all the other mods doing similar things have furniture animations which breaks you out of stealth mode which is bad when you are trying to sneak.
     
    Should be SE compatible in theory but I haven't tested it out.
     
    Let me know if there is a way to make it more efficient.

    118 downloads

    Updated

  9. Deadly Infinium

    you get to keep the Oghma Infinium, but the higher your skills the more it will harm you to increase them.
     
    (note: this mod is just a simple script edit with no esp, also it's most likely not compatible with other Oghma Infinium mods)

    38 downloads

    Submitted

  10. Skimpy Outfit Replacer for The Evil Mansion CBBE HDT

    Replace all woman outfit for The Evil Mansion Final and Remaster. Simply See Screenshot.
     
    Loose Version for Underwear and Devious mod Remodel AIO.
     
    Note: Should be Works both Complete Edition and Remaster one.

    104 downloads

    Updated

  11. Hakuryuu Race Queen Outfit (CoCo Body v6)


    This outfit is based off of some fanart. I did the best I could as a beginner modder, but don't expect any miracle work or fancy features here.  Gloves and Boots not Included.
     



    UNP body textures
    XP32 Maximum Skeleton Extended - XPMSE
    COCO Body (3BBB) v6 or something similar (No promises, but BHUNP will probably work)
    BodySlide and Outfit Studio
    NetImmerse Override or RaceMenu
    

    The outfit can be crafted at any forge (Needs Elven Smithing Perk) or with console commands. You could also use something like Automated Leveled List Addition to distribute it in the world.

    

    295 downloads

    Updated

  12. Player exhibitionist patches reuploaded

    Some patches I had created for my mod player exhibitionist, to be used together with some popular DLS sized new lands mods.
     
    All patches are developed using Skyrim LE.
    If you are playing Skyrim SE maybe they work, maybe not.
     
    Use at own risk
     

    127 downloads

    Submitted

  13. Flame Mane Armor (CoCo Body v6)

    HUGE SHOUTOUT TO Drag-oon23, THIS MOD WOULD HAVE BEEN SCRAPPED HAD HE NOT SAVED ME

    This is Dehya's armor from Genshin Impact, but I tried to make it fit better into Skyrim. There's not much more to it than that, its a single chest-piece with a ground item.

    HOW TO OBTAIN: You have to use console commands or patch it into your leveled lists. I will not be adding it to the world.

    FEEL FREE TO YOINK THIS MOD AND FIX/UPGRADE/CHANGE ANYTHING, just put my name in the credits somewhere.

    161 downloads

    Submitted

  14. HD 4K Nordic Carved Armor

    I wasn't happy with the existing Nordic Carved Armor texture replacers, so I made my own.
     
    This is an overpaint of the existing Bethesda textures: upscaled, painted over with Substance Painter, and re-exported with slight additional detail to make up for the resolution change. There has also been a slight alteration to the _1 female torso mesh to make it slightly more supple and girthy.
     
    Body pieces are 4K, while the feet, hands, and helmet are all 2K.

    It's for female only. This doesn't cover the male meshes. Male meshes will only have the diffuse map in place, and not my custom specular maps. These can be made upon request.
     
    I have no idea if this is SE compatible or not, but if you end up converting it let me know and I will upload it here.
     
    The secret phrase to the main archive is "loverslab". This is to prevent mod crawling.

    Update: Added proper Khajiit and Argonian meshes. Extract to \Data\meshes\dlc02\armor\nordiccarved.

    Permissions:
     
    All permissions for this file are closed. If you want to upload personal modifications of this mod, notify me and I will put them here.

    (C) Zoey K Lavender, 2023 and all years after.

    191 downloads

    Updated

  15. Tents - No Collision

    Simple mod that disables collision for the small nordic and imperial tent by removing the collision flag in the
    nif files, which enables you to start sex scenes in the tent. It always bothered me that I couldn't get in there.
     
     
    Installation
     
    Install the file with your mod manager.
     
     
    Have fun.
     

    490 downloads

    Updated

  16. Lady Horus TERA Armor: BHUNP

    ~ Armor and Accessories from TERA ~ ~:+ BHUNP EDITION +:~  
    IF YOU ARE INSTALLING FOR SKYRIM SPECIAL EDITION, PLEASE USE THESE INSTRUCTIONS
     
    FOR EXPLANATION OF THE DOWNLOAD LINKS PLEASE SEE BELOW UNDER "DOWNLOADS" SECTION OF THIS POST.
     
    Quick Update: Re-uploaded the Main Files as the original had a temporary file (under CalienteTools\BodySlide\ShapeData\Horus\Tera\temp\succubusconvertwip.nif) that is unused (and old).
    If anyone is curious, yes I was attempting to convert the Lilith boss regalia (and was testing some wings as well) but it never got finished... I may return to it at a later time. For now this old mesh can be discarded.
     
    10/9/23 1:40pm EST: Fixed broken body morphs for HIMBO conversion.
     
     

    Welcome back everyone! This is a complete conversion of my first mod, LadyHorus TERA Armor for UUNP to fit the BHUNP body (version 3). It should be noted that I will no longer be updating the UUNP version.
     
    This mod was originally largely inspired by Asianboy345's TERA Collection, and created to add even more conversions of the armor from TERA to Skyrim! With that said, though, all armors in my mod are new conversions straight from TERA, I did not use anyone elses' previous work.
     
    This mod now uses exclusively SMP and no longer supports HDT-PE. Many armors have been improved with edited or remade physics bones for better movement, and all have full breast and butt physics.
     
    I am also starting work (casually) on making some HIMBO conversions as well, and all new male armor added will use this body as a base (bodyslide HIMBO will be optional, I will include pre-mades in the main files). For now there is only one HIMBO conversion (Zodiac robes).
     
    Supported BHUNP Bodies in Bodyslide:
     
     
    High heels in this mod also will change character height thanks to NiO High Heels! Please see the requirements section for more info.
     
    Overall I did my best to make each armor look good with every setting and body type. Enjoy!
     


      
     
      
     
     

     
       
     
       
     
       
     
       
     
       
     
       
     
       
     

     
     

     
       
     
       
     
        
     
       
     
       
     
     

     
       
     
       
     
       
     
       
     
      
     

     
     
     
     

    Currently there are 30 Heavy, 24 Light, 19 Robe armors (including some retextures and variants).
     
    When you first start a new game (or load an existing save) you will receive 5 books of various categories. These will be required to craft their respective armor types (you must hold them in your inventory at the time of crafting for the armor/accessories to be visible on the crafting menu). This is for the sake of trying to keep the menu clean as it felt rather cluttered before.
     
    All armor sets additionally require their respective Blacksmithing skill to craft. Accessories, additional outfits and mage robes do not require any crafting skill.
     
    Armor Listing in the Spoiler. Newly added conversions will be marked in orange. Please note some armors have alternative versions which can be switched on/off in Bodyslide!
     
     
     

    This version (BHUNP) is not compatible with previous versions for UUNP or Dreamgirl as it will overwrite them.
     
    This mod is a completely separate mod from other authors' TERA mods! Therefore it should work alongside them and/or without them just fine.
     
    The Castanic Horns in this mod use slot 57, which means that any mod that has items that occupy this slot will conflict!
     
    I have removed compatibility with the following mod:
    Stealth Skills Rebalanced
     
     
     

    All of these are required, and remember to also have everything these require to work as well! Check their individual pages for that info.
     
    Please note that this version no longer supports HDT PE cloth physics! You can run it without SMP but none of the physics will function, so I don't recommend it.
      • SKSE: Skyrim Script Extender
     
    • HDT SMP version 0730 (can be found for download here under "optional files", or I have hosted a mirror here). It is REQUIRED to update to this version, as this is what my mod was built upon. This download can be found under Optional Downloads below. Please don't try running my mod with previous versions of SMP as the physics on my mod will not work as intended. If you are planning to convert this mod for SSE, I cannot guarantee it will work... from what I understand the SMP for SSE is different from LE, and I have yet to look into it further. So just be cautious.
     
    • For any assistance with SMP I'd recommend researching online as there are various tutorials about it... One common problem is that there are regional differences with the physics files (.xmls located in meshes\Horus\) so if you experience it not working properly or at all, I would try replacing all "." in the files with ","
     
    • XP32 Maximum Skeleton Extended - XPMSE by Groovtama
     
    • NiOverride High Heels: Every female high heels set makes use of height changes provided by the mod NiOverride High Heels. However, it is not required that you have NiOHeels installed, just understand that without it, heels will sink underground!
     
    • BHUNP: This is the female body which this mod is based upon. My mod will not work properly without it especially in regards to body physics. Currently mine was based upon BHUNP version 3.
     
    • HIMBO: For now I only have one armor available, but in the future I will be adding more for this body. If you're planning to use any conversions for it, obviously you will need its respective Bodyslide files.
     
    • Bodyslide: BHUNP makes use of Bodyslide in order to adjust female body settings. By default there are no female meshes in the Skyrim mesh directory, you MUST generate them using Bodyslide. Use Bodyslide to make the female body you'd like to use and generate your own female armors!
     
    - Additional Note: For some armors I included "collision" meshes which are basically blank meshes meant to act as something for the physics to interact with. So your previews may look something like this. Don't worry, it is working as intended and will look as it should once in-game.
     

     
     
     
     
    Main Files, Version 4.0:
    Mega.nz:
    Lady Horus TERA Armor BHUNP 4.0 - Main Files
     
    Textures, Version 4.0:
    Mega.nz:
    Lady Horus TERA Armor BHUNP 4.0 - Textures
     
    High Resolution Textures:
    Tera Armors Collection Upscaled Textures (TACUT) and Friends
    I highly recommend using Kartoffels' upscaled TERA textures for this mod. If you're using them with LE you will need to convert them using a tool such as Cathedral.
    (Until it is updated to this version, you will still need the new textures listed here under Update Files).
     
     
    Update Files:
    Mega.nz:
    Lady Horus TERA Armor BHUNP 4.0 - New Textures Only
    Use this if you have my mod for UUNP latest version's textures already installed.
     
    Optional Files:
    Mega.nz:
    Lady Horus TERA Armor - HIMBO v4.01
    Only includes one conversion at this time ("Zodiac" robes).
    I added some custom sliders to the body as well for my own use, they can be ignored (listed as "BellyButton, ButtLift, BackLowerCurve").
     
     

     
    (IF YOU ARE INSTALLING FOR SKYRIM SPECIAL EDITION, PLEASE USE THESE INSTRUCTIONS)
     
    Installation instructions below in the spoiler, PLEASE READ AND FOLLOW before asking for help:
     
     

    Manual:
    • Delete all files included in this mod. This should include the following:
     
    Skyrim\Data\CalienteTools\Bodyslide\ShapeData\Horus ...
    Skyrim\Data\CalienteTools\Bodyslide\SliderGroups\LadyHorus Tera BHUNP.xml
    Skyrim\Data\CalienteTools\Bodyslide\SliderSets\BHUNP LadyHorus TERA Collection.osp
    Skyrim\Data\Meshes\Horus ...
    Skyrim\Data\Textures\Horus ...
    Skyrim\Data\Textures\cubemaps\amidianborn_chitin_e_ebony.dds
    Skyrim\Data\Textures\cubemaps\LHTeraxxx.dds
    Skyrim\Data\LadyHorus_TERA.esp
     
    Mod Organizer:
     
    • Deactivate the esp and files in your manager of choice. Delete my mod from your mod listing in your mod manager if you want it completely uninstalled and are not planning on installing again. If you aren't sure, you can always deactivate it in the left pane by unchecking it on the checklist. This will keep the files but they are not active in your virtual file system created by MO.
     
     

    • All clothing, armors and accessories are from the MMORPG TERA: The Exiled Realm of Arborea, property of BlueHole Studios and En Masse Entertainment. I do not claim any of it, only that I took the time and energy to extract and convert all content within this mod for use in Skyrim.
     
    • Bare feet mesh (for high heels) is from Charming High Heels, and is by ChronoTrigger77: Remodeled Armor for CBBE Bodyslide and TBBP HDT
     
    • Bodyslide credits go to Caliente, Ousnius and others.
     
    • BHUNP by factoryclosed
     
    • The "chitin_e_ebony" cubemap used on some armors is from Ebony Retextures by CaBaL120.
    • Cubemaps are by Humus, with some coming from Humus Cubemaps on Nexus. Others were edited by me.
     
     

    Please DO NOT reupload elsewhere! DO NOT upload to Nexus or Steam! If you wish to post about it on another site or blog, link to this page only. Don't reupload it! Don't claim it as your own conversion work either, please. If you want to host a mirror for the sake of having a backup that is fine too.
     
    Generally speaking, I'm okay with my mod's assets being used for Follower mods as long as credit is given to me for the armor (or accessories) conversion that you've used, and a link is provided to this page.
     
    If you'd like to do translations to other languages that is fine too, as long as my mod is still required to use it (ie, you only provide a translated esp).
     
    Generally I'm a pretty easy going person, so don't be afraid to ask if you have questions. ^-^
     
    Thank you for respecting my wishes.
     
     

    • 3D Studio Max 2012
    • NifSkope
    • Notepad+ +
    • Photoshop CS6
    • Bodyslide: Outfit Studio
    • Umodel (for extracting TERA models)
    • Creation Kit
     
     

    Many special thanks to a great inspiration and teacher, Nightasy. If not for his tutorials none of this would have been possible!
     
    Asianboy345 - For his encouragement and help learning the nuances of how he worked on his mod.
     
    Arjuna76 - For encouraging me to first do UUNP conversions! I've learned a lot in the process.
     
    Ousnius - For help when I had questions regarding Bodyslide and NiO High Heels! Very appreciated!
     
    And of course, to Bethesda for creating Skyrim, and Bluehole Studios for creating Tera! Two great games that I love to play.
    Sadly, TERA is no longer being supported, but I like to pay homage to a great game.
     

    A FULL FAQ CAN BE VIEWED HERE.
     
     

    870 downloads

    Updated

  17. Skyrim Hezimao Shoes Collection Legendary Edition

    Fomod File. Enjoy

    499 downloads

    Updated

  18. Vindictus Collection Volumens 1, 2 and 3 CBBE and UUNP Legendary Edition

    English version. Fomod instaler. Enjoy

    1,031 downloads

    Updated

  19. [UUNP] Addon for Grandmaster Wolven Armor 2

    My addon files for the Grandmaster Wolven Armor 2.
     
     
     
    Requirements
     
    Grandmaster Wolven Armor 2
     
     
     
    Installation
     
    Install the original mod with your mod manager.
    Delete everything exept for the textures folder from it.
     
    Unpack now my files and drop them into the original mods folder.
     
    Build it with Bodyslide and Outfit Studio.
     
    Again.
     
     
     
    Special Features
     
    - outfits with vagina collision
    - separate pants
     
    HDT High Heels Version (speeds up SL scene start) use the non HDT High Heels esp
    and overwrite the esp in Main file if you don't have HDT High Heels.
     
     
     
    Credits
     
    fxckthisworld
    UrbanNomadNome
     
     

    87 downloads

    Submitted

  20. [UUNP] BDOR Oblivion and Solar Knight by Team TAL

    Two UUNP conversions i made six month ago.
     
     
     
    Requirements
     
    BDOR Solar Knight by Team Tal
    BDOR Oblivion by Team Tal
     
     
    Installation
     
    Install the original mod and my files after it.
     
     
    Special Features
     
    - outfits with vagina collision
     
     
    Credits
     
    TeamTal

    155 downloads

    Submitted

  21. Shadow Preset

    This is my gothic character Shadow. You can now look like her!

    75 downloads

    Submitted

  22. Horse Charge

    gives horses there own version of the shield change perk ( people get knocked over if horses run into them )
     
    the "joke" version was my first try at it, the results were....entertaining but not helpful (more so if you increase the spell effect's script property value)

    109 downloads

    Submitted

  23. Dragon Quest and Crown Sorceress Outfit for CBBE HDT AIO

    There is All in One Outfit Including Alternate Texture (DreamBurrows and felixttf) for CBBE HDT.
    Loose Version is for Remodel AIO mod.
     
    Credit: DreamBurrows, Backsteppo, and felixttf.

    162 downloads

    Updated

  24. Skimpy Outfit Replacer for "Project AHO" CBBE HDT

    it's simple female outfir replacer for Project AHO mods. Loose Version is for Remodel AIO. 

    163 downloads

    Updated

  25. Customized Whiterun Houses And Parts - A Resources For Mods Based By Using Custom Building(s)

    Hello,
    this is for modders/creators, which look for a custom house and which want to bring a more complexer interieur into their mod. Can be used for player´s homes and all other ideas like shops etc.
    PLEASE do no use those houses inside of WHITEUN as a replacement! I am preparing a WHITERUN mod by using this resouce, so that we please do not get any sort of similar content or a mod-collision!
     
    The stuff can easily become converted as well to work inside of SSE.
    I also added a "ladder-pack", which allows to replace or use a more wider LADDER inside of those buildings for a better navmesh-performance!!!
     
    Hint:
    Creations with the spindle-stair have carefully to become tested so to make sure that NPCs and followers will USE those by a carefully created navmesh.
     
    Hint 2:
    The texture for the spindle-stair has to be added into your mod as well, please link the gamebryo-file´s texture-path to the suitng folder, then.
     
    Enjoy:-)
     

    165 downloads

    Updated

×
×
  • 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