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. PapyrusUtil LE/SE/AE

    Which file to download:
    For Skyrim LE (Oldrim): PapyrusUtil LE v33.zip
    For Skyrim SE (Pre-AE, 1.5.x runtime): PapyrusUtil SE v39.zip
    For Skyrim SE/AE (1.6.x+ runtime): PapyrusUtil AE v43.zip
     
     
     
    1. Description
     
    SKSE plugin that allows you to save any amount of int, float, form and string values on any form or globally from papyrus scripts. Also supports lists of those data types. These values can be accessed from any mod allowing easy dynamic compatibility.
     
    Also adds the following papyrus commands:
    Toggle fly cam and set fly cam speed - TFC. Set menus on / off - TM. Adds an additional package stack override on actors. See ActorUtil.psc Replace any animations on selected objects. See ObjectUtil.psc Print messages to console. Get, set, save, or and load data to a custom external JSON file. See JsonUtil.psc  

    PapyrusUtil.psc - version check & variable initialized arrays.
    StorageUtil.psc - store variables and lists of data on a form that can be pulled back out using the form and variable name as keys. See psc file for documentation.
    JsonUtil.psc - Similar to StorageUtil.psc but saves data to custom external .json files instead of forms, letting them be customizable out of game and stored independent of a users save file.
    ActorUtil.psc - actor package override.
    ObjectUtil.psc - animation replacement.
    MiscUtil.psc - some misc commands.
     
    2. Examples
     
    Example 1:
    Setting and getting simple values
    StorageUtil.SetIntValue(none, "myGlobalVariable", 5) ; // enter none as first argument to set global variableStorageUtil.SetIntValue(Game.GetPlayer(), "myVariable", 25) ; // set "myVariable" to 25 on playerStorageUtil.SetFloatValue(akTarget, "myVariable", 75.3) ; // set "myVariable" to 75.3 on akTargetStorageUtil.SetStringValue(none, "myGlobalVariable", "hello") ; // enter none as first argument to set global variableint ivalue1 = StorageUtil.GetIntValue(none, "myGlobalVariable") ; // get the previously saved global variableint ivalue2 = StorageUtil.GetIntValue(Game.GetPlayer(), "myVariable") ; // get value of myVariable from player; // myGlobalVariable can exist both as int and string at the same time.; // Different type values are separate from each other.float fvalue = StorageUtil.GetFloatValue(akTarget, "myVariable") ; // get float value from akTargetstring svalue1 = StorageUtil.GetStringValue(none, "myGlobalVariable") ; // get "hello"string svalue2 = StorageUtil.GetStringValue(none, "myMissingVariable", "goodbye") ; // get "goodbye"; // an optional 3rd variable can be passed in the Get function to be returned if the given key "myMissingVariable" doesn't exists.  
    Example 2:
    Saving object references
    Actor akCasterActor akTargetStorageUtil.SetFormValue(akTarget, "Friend", akCaster)Actor friend = StorageUtil.GetFormValue(akTarget, "Friend") as Actor  
    Example 3:
    Value lists
    StorageUtil.IntListAdd(none, "myGlobalList", 5)StorageUtil.IntListAdd(none, "myGlobalList", 27)StorageUtil.IntListAdd(none, "myGlobalList", 183)StorageUtil.IntListAdd(none, "myGlobalList", 3)StorageUtil.IntListAdd(none, "myGlobalList", -12398); // iterate list from last added to first addedint valueCount = StorageUtil.IntListCount(none, "myGlobalList")while(valueCount > 0) valueCount -= 1 Debug.Notification("List[" + valueCount + "] = " + StorageUtil.IntListGet(none, "myGlobalList", valueCount))endwhile; // iterate list from first added to last addedvalueCount = StorageUtil.IntListCount(none, "myGlobalList")int i = 0while(i < valueCount) Debug.Notification("List[" + i + "] = " + StorageUtil.IntListGet(none, "myGlobalList", o)) i += 1endwhile; // Get the 2nd, 3rd, and 4th elements of the list into an arrayint[] myList = new int[3]StorageUtil.IntListSlice(none, "myGlobalList", myList, 1) ; // starts pulling elements from the list starting from from the 1 index; // skipping the 0 index value, "5" will fill the papyrus array until it runs out of either list or papyrus array elementsDebug.Notification("2nd: " + myList[0]) ; // prints "2nd: 27"Debug.Notification("3rd: " + myList[1]) ; // prints "3rd: 183"Debug.Notification("4th: " + myList[2]) ; // prints "4th: 3"; // remove 27 from the listStorageUtil.IntListRemove(none, "myGlobalList", 27); // remove last element of listStorageUtil.IntListRemoveAt(none, "myGlobalList", StorageUtil.IntListCount(none, "myGlobalList") - 1); // set first element to -7StorageUtil.IntListSet(none, "myGlobalList", 0, -7); // find first occurance of element in listint index = StorageUtil.IntListFind(none, "myGlobalList", 183)if(index < 0) Debug.Notification("Not found!")else Debug.Notification("Element 183 is at index " + index)endif; // clear listStorageUtil.IntListClear(none, "myGlobalList"); // create a new list from a papyrus arrayfloat[] newList = new float[3]newList[0] = 4.04newList[1] = 39.2newList[2] = -42.25StorageUtil.FloatListCopy(PlayerRef, "myCopiedList", newList)Debug.Notification("Copied value 0 = " +StorageUtil.FloatListGet(PlayerRef, "myCopiedList", 0)) ; // 4.04Debug.Notification("Copied value 1 = " +StorageUtil.FloatListGet(PlayerRef, "myCopiedList", 1)) ; // 39.2Debug.Notification("Copied value 2 = " +StorageUtil.FloatListGet(PlayerRef, "myCopiedList", 2)) ; // -42.25  
    Example 4:
    Saving values that are shared among all savegames in an externally saved file.
    JsonUtil.SetIntValue("MyModConfig.json", "AnswerToLifeUniverseEverything", 42); // (optional) Save any changes made to your file and creates it if it does not yet exists.; // This is done automatically without needing to be done manually whenever a player saves their game.; // Files are saved and loaded from Skyrim/data/SKSE/Plugins/StorageUtilDataJsonUtil.Save("MyModConfig.json") ; // ... Start a new game ...int mySetting = JsonUtil.GetIntValue("MyModConfig.json", "AnswerToLifeUniverseEverything") ; // mySetting == 3; // Alternative version using the globally shared external file; // All mods using these commands share this file, saved/loaded from Skyrim/data/SKSE/Plugins/StorageUtil.jsonStorageUtil.SetIntValue("AnswerToLifeUniverseEverything", 42); // ... Start a new game ...int mySetting = StorageUtil.GetIntValue("AnswerToLifeUniverseEverything") ; mySetting == 3  
    3. Requirements
     

    SKSE latest version: http://skse.silverlock.org/
    Address Library for SKSE Plugins: https://www.nexusmods.com/skyrimspecialedition/mods/32444
     
     
    4. Installing
     
    Use mod manager or extract files manually.
     
     
     
    5. Uninstalling
     
    Remove the files you added in Installing step.
     
     
     
    6. Updating
     
    Just overwrite all files.
     
     
     
    7. Compatibility & issues
     
    Should be compatible with everything.
     
     
     
    8. Credits
     
    Ashal - continued maintenance & refactoring of original plugin's source code
    h38fh2mf - original version, idea, address library conversion
    SKSE team - for making this plugin possible
    milzschnitte - for suggestions
    eventHandler, Expired, aers, arha, ianpatt - SKSE64 conversion & update assistance
     

    422,142 downloads

    Updated

  2. Me4Fan's Companions

    KAIDAN, SHEPARD, JAMES, LIARA, MIRANDA and CHRIS have landed to SKYRIM!
    You can find Kaidan and Shepard in the the Drunken Huntsman in Whiterun, now also Shepard speaks English (nay the language spoken in your game)! They wear theirs own custom armors. In the LITE version I try to content whom prefer them to be more lore friendly so I equipped them with Penitus Oculatus armors.
    You can find James Vega hanging around in Jorrvaskr.
    Liara and Miranda instead are studying in the Arcanaeum.
     
    NEW STUFF:
    Chris Redfield is hanging around in Jorrvaskr with Vega.
     
    Here you can find out how I make my mods:
     
    PS:
    (Liara) I know that in same light condition the seams become more evident, but it's the best I can do.
    (Miranda) I need to fix her hairs. They are blurred with any enb when they are on focus. Suggestions to fix this problem are welcome
    For the thread click HERE (the thread is no more accessible because of a complaint)

    37,503 downloads

    Updated

  3. {UPDATE - Elin Voice v2.1 with Throw Voice Replacer Options} Tera Elin Race

    Tera Elin Race
    Skyrim Legendary Edition  
     
    Skyrim Special Edition Version
    http://www.loverslab.com/topic/71987-update-march-07-2017skyrim-se-tera-elin-race/
     

     
    [ LORE ]____________________
     
    http://tera.enmasse.com/game-guide/races/elin/
    Building corporeal forms around tiny fragments of her own divine being, the goddess Elinu created the Elins. Their physical appearance reflected the youngest daughter of Arun's naive wish for beauty and peace.
    Their queen governs both the Elins and the Poporis, with whom they share a history and a mission. The queen and her forces have proven their wisdom and diplomatic prowess in peace, and their tactical and fighting prowess in war.
     
    The Elins have one driving goal: if it’s not good for nature, stop it. Older and wiser than they appear, they join with forces of nature and mortal races to sweep their enemies from the battlefield. Their speech is often dark, forthright, and otherworldly, and their sense of humor can border on vicious. Other races find the Elins' manner and behavior off-putting.
     

    [ ABOUT ]____________________

    [ UPDATES ]____________________

    [ FILES ]____________________
     
    RECOMMENDED MODS
    These mods are not required, but I recommend them because they provide enhancements and/or fixes when playing as an Elin.
     
    REQUIRED MODS
    None. The Elins do not require additional mods to be playable
     
    If you are using RaceMenu, Enhanced Character Edit, with or without Dual-Sheath Redux, then XPMS Extended (http://www.loverslab.com/topic/25971-xp32-maximum-skeleton-extended/) is required.
    For XPMS Extended, you will need to pre-install the required files before installing XPMS Extended.
     
    [ MAIN ]____________________
    Elin Race Main Pachages
    Description: Adds the Elin as a playable race. The Color-Match Edition contains the main files + Elin ears and tails that changes color to match the color you give to the Elin hair.
     
    File: 2016Jan29_MAIN_ElinRace_v2.7z
     
    File: 2016Jan29_MAIN_ElinRace_ColorMatchEdition_v2.7z
     
    [ UPDATE ]____________________
    ELIN VOICE PACK COMPLETE version 2.1
    CREDIT:  Krail3r for the idea and the voice files.
     
    Description:  The new voice pack contains all of the dialogue and dragon shouts but, with options to replace the Throw Voice shout with animal sounds from the game.
    The problem was that the taunts when using Throw Voice would not play (the 3 dragon words did).  So far I can't figure out how to fix this so I decided to replace the shout words with animal sounds based on Nature's Lure - Throw Voice Shout.  The result is rather amusing as well as more fitting than the original taunts.
    Included is the Elin voice plugin which removes the subtitles for the taunts if it happens to show.  If you don't use subtitles than it would not matter. 
    If you are perfectly fine with the original Throw Voice shout not playing the taunts then continue using version 2.0.
     
    DOWNLOAD:  ElinRace_Option_VoiceReplacer_Complete_v2_1-20180502.7z
     
    INSTALLATION
     
     
    ELIN VOICE PACK COMPLETE version 2.0
    Description: Upgrades the Elin voice pack that is included with both main packages. The upgrade adds additional voices for dragon shouts from Dawnguard and Dragonborn.
     
    File: OPTION_ElinRace_Voice_Complete_v2-20170222.7z
     
     
    [ OPTIONS ]____________________
    HORSE RIDING ANIMATION FIXES by ANGELWEI
    Description: Angelwei modified the horse riding and idle animations from Skyrim Horses Renewal.  The modifications fixes the Elins clipping into horses
    LINK
    To download Angelwei's file + link to required mod, Skyrim Horses Renewal.  Screenshots included.
     
    [OPTIONAL ALTERNATIVE]____________________
    If you use the vanilla horses from Skyrim or the Convenient Horses mod, I moved Angelwei's files so that it replaces Skyrim's animation files.  The modified anims will now work with the vanilla horses or with mods that use the games original horse riding animations.
    DOWNLOAD
    ElinRace_OPTION_Skyrim HorseRiding Animation Fix by Angelwei.7z
     
     
    [ OPTIONS ]____________________
    ELIN IDLE and TERA ANIMATIONS REDONE
    Description: Adds the Elin idle animation and select (Castanic) combat and non-combat animations used only by the Elins.
     
     

    REQUIRED MODS
    FNIS v6.3 or newer (http://www.nexusmods.com/skyrim/mods/29624/?).
     

    File: OPTION_ANIMATION_TeraElin_v2_0-20170720.7z
     
    INSTALLATION

    ELIN ALL-IN-ONE HAIR PACKS
    Description: All-in-One (AIO) hair packs contain some of the mor popular Skyrim hair packs such as, Apachii and hairs by zzJay. The AIO, HDT hair pack contains hairs with physics and animation.
     
    REQUIRED MODS
    HDT Physics Extension (files are included with the Elin race main packages; a separate installation of HDT-PE is not necessary).
     
    File: Elin-mods-mega-links-update-2016Nov15.txt

    ELIN CBBE and UNP CUSTOM BODY REPLACERS + TEXTURE PACKS
    Description: The body replacer pack provides 2 type of bodies for CBBE or UNP, flat-chest and curvy, along with 3 texture options. The separate texture packs provides additional texture options for CBBE or UNP.
     
    Body Replacer
    File: 2015Nov13_Option_NewElinBodies_BBP_TBBP_v3.7z
     
    Extra Textures
    File: 2013Oct30_Option_CBBE_NewBody_TexturePack_v2.7z
    File: 2013Oct30_Option_UNP_NewBody_TexturePack_v2.7z
     

    ELIN CONVERTED OUTFITS
    Description: One mod is the ported Elin maid outfit, the other mod contains some of the Skyrim armors converted to the Tera Elin body.
     
    NOTE #1: The maid outfit and the converted Skyrim armors are for the default Elin body. The Elin body is a port from the Tera game so it's neither CBBE nor UUNP/UNP and cannot use CBBE or UNP textures.
     
    NOTE #2: The converted armors contain only the cuirass or body armor. You still need to use the original Skyrim boots and gloves.
     
    REQUIRED MODS
    The Tera Elin body which is installed with the main race files.
     
    File: Armor_TeraBody_ElinMaidCostume.7z
    File: Armor_TeraBody_ConvertedVanillaSets.7z
    ELIN CONVERTED OUTFITS - ALTERNATIVE UNDERWEAR REPLACER
    Description: Thanks to Skyramiel, this replaces the converted underwear set with a topless version.
     
    Download: http://www.loverslab.com/topic/20121-2016sep07-redonereuploaded-part-2-elin-mage-followers-tera-elin-race/?p=1682818
    ELIN NPC and ENEMIES COMPLETE
    Description: Replaces certain essential and generic NPCs. Adds new, generic NPCs to Whiterun and Winterhold College. Replaces some enemies and adds additional enemies to the leveled list.
    Thanks to TDA, the Elin mage instructor at the Arcanaum will demonstrate elemental magic without inflicting harm and aggro'ing followers.
     
    REQUIRED MODS
    Hearthfires DLC (for the Falkreath housecarl replacer option).
     
    File: Elin-mods-mega-links-update-2016Nov15.txt
     
    INSTALLATION

    ELIN FOLLOWERS
    SISTER MI YA and YI KA
    Description: They can be found in Whiterun at the Drunken Huntsman Inn. They use the Tera Elin body.
     
    File: 2016Sep06_FOLLOWERS_MiYa_and_YiKa_v2.0r.7z
     
    INSTALLATION

    ELIN MAGES
    Description: Firelin, Icelin, and Thundelin, three elemental mages, can be found in the Arcanaeum at the Mage's College of Winterhold. They use the Tera Elin body.
     
    File: 2016Sep07_FOLLOWERS_ElinMageFollowers_v1_Redone.7z
     
    INSTALLATION
     
    [ MISCELLANEOUS ]____________________
    BODYSLIDE ELIN PRESETS + OUTFIT STUDIO CONVERSION TEMPLATES
    Description: CBBE and UUNP/UNP Flat-chest and Curvy Elin presets for bodyslide. Simple conversion templates to convert armors to the Elin body presets.
     
    REQUIRED MODS
    Bodyslide 2 and Outfit Studio. (http://www.nexusmods.com/skyrim/mods/49015/?) Elin CBBE and UNP Custom Body Replacers
    File: 2015Nov22_ElinBodyPresets_and_ConversionTemplates_for_ElinRace1-6.7z
    INSTALLATION


    205,907 downloads

    Updated

  4. {UPDATE-2017 May 08} Tera Elin Race 2

    Tera Elin Race 2
     
     
     
     
     
     
    ================================================

    ================================================  
    *** The Elin Race does not work with Sexlab. This is not a bug or compatibility issue, the race is not suppose to work with SL. I do not have a fix for this and I will not create a fix. ***
     
    ================================================

    ================================================  

    The Elin race now features ECE-CME morphs not available with the previous versions. This addresses some requests to make a less anime-looking Elin while still providing options for those people who prefer the uber kawaii appearance of the previous Elin versions.
     
    Some key features offered by some of the new sliders. See SCREENS.
     
    Tera Elin race 2 is completely compatible with Tera Elin race 1 and will not overwrite any files or conflict. Both share the same race Powers and Abilities. However, Elin 2 is standalone so that means the Elin 1 add-ons (NPCs, summon ring, followers, enhancements, and fixes) still requires the Elin 1 main files. Elin 2 will eventually have her own add-ons.
     
    It is important to emphasize that Elin 2 uses her own CME morphs and requires Enhanced Character Edit.
     
    ================================================
    ================================================
    IMPORTANT - Regarding Required Files
    I have updated the information regarding required files for use with Elin Race 2.
    Enhanced Character Edit is required for the EXTRA MORPHS that adds new face and head customizations.
    RaceMenu is compatible with the race, but does not feature the extra customization sliders. Adding the extra morphs require some scripting to add them to RaceMenu's menu. Other than that, you can use Elin Race 2 with RaceMenu.
     
    RaceMenu v3 is not compatible in any way with ECE. If using both, you will have problems with the Elin sliders not appearing or getting swapped (i.e. Nose slider changes the ears, etc.).
    ================================================
    ================================================

    Other Elin Mods  
     
     
    Recommended Mods
     
    MFG Console by Kapaer (adds eye blinking and face expressions/phonemes/modifiers)
     
    http://www.nexusmods.com/skyrim/mods/44596/?  

    UPDATE
    I have found the source that prevented the animations from functioning. A patch has been uploaded.
     
    Tera Elin 2 has been translated and available at these sites.
    中国
    by a1126429003
    http://www.star01.net/post/170382
     
    ================================================
    ================================================
    UPDATES (see CHANGE LOG for additional information)
     
    *2017 May 08 - Custom Elin 2 Vioce Pack.
    FILENAME: OPTION_TeraElinRace_Voice_Complete_v2-20170508.7z
    Now includes custom, English voices for the Dawnguard and Dragonborn shout. Non-shout voices are still Japanese. Changed the way the game makes the Elin race (only) use the voice pack. (MUST REMOVE THE ORIGINAL PLUGIN AND SCRIPTS). INSTRUCTIONS.  

    *2017 January 02 - Re-uploaded All Files.
    I don't know what happened, but any files that were downloaded prior to today would be empty archives (0kb).
     
    *2016 December 26 - Added NetImmerse Override to the List of Required Mods.
    Forgot to include NetImmerse Override (NiOverride) to the Requirements list when using XPMSE + ECE. Should fix any issues with weapon and Elin headparts scaling. Not needed is using XPMSE + RaceMenu.  

    *2016 October 26 - (#1) No Installer Script version of the main pack and color-match main pack.
    *** FILE ***
    *2016Oct26_MAIN_TeraElin2_v3_NoInstallScripts.7z
    *2016Oct26_MAIN_TeraElin2_v3_ColorMatch_NoInstallScripts.7z
    If you do not have problems installing the original main packages that use installer scripts then you do not need these scriptless packs.
    (#2) Optional patch to make Elin 2 adults in scaling.
    *** FILE ***
    *OPTION_Adult Scaling_TeraElinRace2_v3.7z
    Makes the Elins adult in scaling (0.95x) Only contains the Tera Elin 2 master file. Requires one of the Tera Elin 2 main packs. When installing, allow overwriting of 'TeraElinRace.esm'. Screenshot.  

    *2016 August 17 - Elin Bodyslide Presets and Outfit Studio Conversion Templates.
    *** FILE ***
    *2015Nov22_ElinBodyPresets_and_ConversionTemplates_for_ElinRace1-6.7z
    This is the Bodyslide Presets and Outfit Studio Conversion Templates I uploaded for Elin (1) race. I have been told it works well with Elin 2. If you are having issues with removing the bikini underwear from the default Elin 2 body then use the Elin Bodyslide preset to create a replacer. Only create a UUNP body since Elin 2 only uses UNP textures. Additional information and installation instructions located in this post...http://www.loverslab.com/topic/33294-update-2016-august-10-fnis-patch-for-elin-dance-animation-tera-elin-race-2/?p=1646949  

    Presets
    UUNP Elin (flat-chest)
    UUNP Elin Curvy (with breasts)
    CBBE Elin
    CBBE Elin Curvy
    BBP, TBBP, and HDT
     
    Conversion Templates
    UUNP/UNP to Elin
    CBBE to Elin
    7Base to Elin
     
    *2016 August 10 - Patch to Fix the Tera Elin Dance Idle Animation When Using FNIS v6.x.
    *** FILE ***
    *2016Aug10_PATCH_FNIS_6x_TeraElinDanceAnimation.7z
    Info and installation instructions provided in the CHANGE LOG post. http://www.loverslab.com/topic/33294-update-2016-august-10-fnis-patch-for-elin-dance-animation-tera-elin-race-2/?p=835025  

    PREVIOUS UPDATES

    ================================================
    ================================================
     

    Files Available (as of 2015 March 08)
     
    These files can be downloaded from LoversLab.
     
    MAIN RACE FILES (updated 2015 December 22)
    2015Dec22_MAIN_TeraElin2_v3.7z
    2015Dec22_MAIN_TeraElin2_ColorMatchEdition_v3.7z
     
    PATCHES
    2016Aug10_PATCH_FNIS_6x_TeraElinDanceAnimation.7z
     
    OPTIONS - TEXTURES
    OPTION_BEAUTYQUE_TeraElin2_v1.0 -2014Jun26.7z
     
    OPTIONS - ANIMATIONS
    OPTION-ANIMATION-Elin Dance Idle_v1-20150308.7z
    OPTION-ANIMATIONS_TeraElinRace2_IdleAnimation-v1-0-20141218.7z
     
    OPTIONS - HAIRS - HDT
    OPTION-HDT-HS Compatible_TeraElin2_AIOHairs_v1-1-20150309.7z (for Elin 2 v2.x and latest ONLY)
    OPTION_HDT_TeraElin2_AIOHairs v1.1-2014Sep05.7z
     
    OPTIONS - VOICE REPLACERS
    OPTION_VOICE REPLACER_JP_TeraElinRace2_v1.0 -2014Jun29.7z
    *** English voice pack is now included with the v2.x main packages ***
     
    OPTIONS - FIX KIT
    2015Dec22_TeraElin2_NPC Creation Fix Kit_v1-0.7z
     
    OPTIONS - OTHER
    Enhanced 3rd Person Camera-29990-v0-9.rar
    OPTION-TeraElinRace2-HeadwearSliders_Accessories Pack.7z
     
    ______________________________________
    These files need to be downloaded offsite.
     
    OPTIONS - HAIRS - non-HDT
    Tera Elin 2 v1.x AIO Hair Pack - Master+Single BSA (MEGA)
    Tera Elin 2 v2.x AIO Hair Pack - Headwear Slider Compatible - Master+Loose Files (MEGA) (for Elin 2 v2.x ONLY)
     
    Contains assets from these hairs + files that enable the Elin to use these hairs. These do no contain the full, original hair mods and so will not work with other races.
     
     
    ================================================
    ================================================
    KNOWN BUGS and SOLUTIONS

    ================================================
    ================================================
     
    Mods - Required Mods - Installation Order All files are available from the Forum Downloader unless an outside link is provided.
    INSTALL STEP 1
    REQUIRED - 3rd Party Mods
    SKSE (download link) SkyUI (download link) ECE (download link) XPMS EXTENDED v2.44 or latest (LINK) (the XPMSE files that come with the race packs are only the skeletons). NetImmerse Override v3.4.4 or latest (download link). Not Required if using RaceMenu instead of ECE. Enhanced 3rdPerson Camera (download link). FNIS (fnis generator for users) (only if using the Tera Elin 2 Idle Animations and Dance Idle Animations)
    INSTALL STEP 2
    REQUIRED - Elin 2 Main Package
    Each pack contains HDT ears and tails and adds manipulation sliders for the ears, hairs, and various headwear and accessories. Headwear and accessories MUST be edited to use those sliders. They can still be used if not edited, but they will not be adjustable via the associated sliders.
    Choose only 1 of the new main packages according to what features you want. 2015Dec22_MAIN_TeraElin2_v3.7z 2015Dec22_MAIN_TeraElin2_ColorMatchEdition_v3.7z
    INSTALL STEP 3
    OPTIONS - If there are more than 1 version of a particular option then choose only 1.
    Elin Beautyque (Appearance Enhancements - Texture Replacers). Elin 2 Voice Replacer (Japanese shouts). Elin 2 (English) Voice Replacer is included with Tera Elin 2 v2.x. All-In-One Hair Pack (new Hair Manipulation sliders compatible). All-In-One HDT Hair Pack (now compatible with Elin 2 v2.x Headwear sliders). Tera Elin 2 Idle animation. Tera Elin 2 Dance Idle animation. Elin 2 NPC Creation Fix Kit.
    ================================================
    ================================================
    HOW TO...
     

    1) Remove the Bikini from the Body Meshes.

    ================================================
    ================================================
    CREDITS
     
    MAIN
    Elin Race 2 is based on the DerivedElin race with assets from Elin 1
    2ch Community
     
    XPMS Extended by Groovtama
    http://www.loverslab.com/topic/25971-xp32-maximum-skeleton-extended/
     
    ANIMATION
    Elin Dance - Original by Bluhole Studios
    Elin Dance - MMD by Kanahitou
     
    Conversion by RSV
    http://casualmods.net
    HAIRS
    Apachii SkyHairs by Apachii
    http://www.nexusmods.com/skyrim/mods/10168/?
     
    Lovely Hair Styles (lite version) by zn00p
    http://www.nexusmods.com/skyrim/mods/7403/?
     
    Oblivian Hairs by Radioragae
    http://skyrim.nexusmods.com/mods/18110
    (removed from nexus)
     
    Morten Hairs by MortenHoward
    http://www.loverslab.com/topic/9898-sharing-my-ports/
     
    Hair Mods by zzJay
    http://www.loverslab.com/topic/10943-zzshop/
     
    Inphy, JHairs, and random Sims Hairs by ???
     
    HDT PHYSICS EXTENSION
    HDT Physics Extension by HydrogensaysHDT
    http://www.loverslab.com/topic/25501-hdt-news-and-info-latest-v1428-stable-10-24/
     
    HDT Elin Ears and Tails by Deadzone45
    Author of the HDT Wearable Tails
     
    HDT HAIRS
    Edits + HDT v14-28 updates to DOA hairs/Numenume/Merida/Marie Rose/xp32 Azar long Ponytail by Daiemonic
    http://www.loverslab.com/topic/27122-hdt-collisions-hair-physics-now-with-belly-support-updated-just-another-hdt-xml-file/
     
    Merida HDT Hairs by Yoo
    http://www.nexusmods.com/skyrim/mods/52516
     
    Marie Rose HDT Hairs by MortredL
    http://bbs.3dmgame.com/forum.php?mod=viewthread&tid=4337255&page=1#pid112436409
     
    BB's Hair Physics Project by bbdlqek1
    http://www.nexusmods.com/skyrim/mods/57538
     
    Female Hairstyles with Physics by Fuse00
    http://www.nexusmods.com/skyrim/mods/57179
     
    Numenume Hairs by Numenume
    HDT versions by ???
     
    DOA Hairs by ???
     
    MFG Console by Kapaer
    http://www.nexusmods.com/skyrim/mods/44596

    148,271 downloads

    Updated

  5. SkyUI - show armor slots

    Description
    This adds a new column in the SkyUI's inventory, armor category, to show the biped slot(s) the armors are using.
    (Take a look at the screenshot)

    Requirements
    SkyUI 5.0 - only this version

    How to install
    Drop contents into data folder.

    How to uninstall
    Delete:
    data\interface\bartermenu.swf
    data\interface\containermenu.swf
    data\interface\craftingmenu.swf
    data\interface\giftmenu.swf
    data\interface\inventorymenu.swf
    data\interface\skyui\config.txt

    FAQ
    A: What if SkyUI releases a new version?
    Q: Uninstall this mod. This replaces five files from version 5.0. It wouldn't be safe keep using them with newer SkyUI versions.

    A: When reinstalling SkyUI, it complains about some swf files in data\interface
    Q: This is normal. SkyUI doesn't expect this file in your data folder. Should be OK if you are using SkyUI version 4.1.

    A: This mod conflicts with *insert mod*
    Q: I am not using any other mod that modifies these five files, I have no idea if there are conflicts. I guess they will, so let me know if you find any and I'll see what can I do.

    Credits and thanks
    The SkyUI team

    Change log
    v5 - fixed a bug in some displayed messages
    v4 - updated for SkyUI 5.0
    The versions below only work with SkyUI 4.1
    v3 - fixed the "chance to steal" message in container menu for japanese and maybe other languages
    v2 - fixed empty slot columns in barter, container and gift menus
    v1 - initial release

    Cheers

    68,444 downloads

    Updated

  6. [WIP] Skykids - Child races & other technical goodies

    See support thread: http://www.loverslab.com/topic/22395-wip-skykids-child-races-other-technical-goodies-updatedbetter-instructionsfaq111614/

    95,583 downloads

    Updated

  7. {UPDATE - 2014 July 06} Teen Monli Race

    Little Monli Race

    A mysterious race only known for their small size, youthful appearance, and amazingly fast reflexes.  
     

    The little Monli race has been upgraded to teens. The changes are as follows:
    Teen scaling at x0.97 CBBE - TBBP nude bodies: Natural Slim and Natural Plump. UNP Unified nude body (TBBP compatible). 2 head mesh options: round-face and oval-face. Screenshots added.
    What has not changed:
    Original Monli nude, CBBE and UNP textures. Original Hi-res tintmasks and Cute Designs face tattoos. Edited XPMS Extended for the Monli race (with permission from Groovtama and xp32). CME integration file (.ini) to make the Monli compatible with the CME morphs. Dawnguard Crossbow Bolt quiver fix. I suggest first trying the fix available from XPMS Extended. Bolt quiver fix for the Dread Crossbow mod.
    What was added:
    HDT Physics Extension v14-28 by HydrogensaysHDT
    UPDATE
    (2014 July 06)
    - Changed female scaling to x0.95.
    - Edited the CBBE bodies to now use the Monli textures.
     
    ******* Required and Recommended Mods with Installation Order *******
     
    REQUIRED MODS
    1- Install First.
    SKSE for Skyrim v1.9
    http://skse.silverlock.org/
     
    2- Install Second
    Enhanced Character Edit with Character Making Extender OR Race Menu
    ECE
    http://skyrim.nexusmods.com/mods/12951
     
    RaceMenu
    http://www.nexusmods.com/skyrim/mods/29624
    3- Install Third
    Little Teen Monli Race
    - contains configuration files that will overwrite one or more ECE configuration files.
     
    4- Install Fourth
    - CBBE Texture Pack
    LINK
     
    OR
     
    - UNP Texture Pack
    LINK
     
    RECOMMENDED MODS
    1- Install Fourth
    Grootama's XPMS Extended
    - contains configuration files that will overwrite one or more ECE configuration files.
    2- Install Fifth
    Dual Sheath Redux
    http://skyrim.nexusmods.com/mods/34155
     
    IMPORTANT: DSR uses BOSS to sort the load order before creating a Dual Sheath Redux Patch. If you wish to use Dual Sheath Redux, you will also need to install the latest version of BOSS.
    https://code.google.com/p/better-oblivion-sorting-software/
     
    Some people may have issues with BOSS ruining their load order and causing problems with their game. If it's possible, make a copy of the load order (as a TXT file) and if you think BOSS' rearranging of the load order is causing problems for you, after finishing making the DSR patch, compare the load order with the list (TXT file) and make the necessary changes. So far, I have not experienced any issues relating to BOSS.
     
    3- Install Sixth
    Chesko's Belt-Fastened Quivers 1.2 Release -ANIMATIONS ONLY-
    http://skyrim.nexusmods.com/mods/35717
     
    4- Enhanced 3rd Person Camera (no installation order necessary)
    http://skyrim.nexusmods.com/mods/29990/
    I recommend this if you need to make adjustments to the 3rd-person camera. Thank to Dinosaurus for recommending this.
    Requires SKSE and SkyUI.
     
    5- Customizable Camera (no installation order necessary)
    http://skyrim.nexusmods.com/mods/37347//?
    An alternative to Enhanced 3rd Person Camera. The interface is simpler and does not offer options to edit the camera for different events, but if you prefer something straightforward and simple, try out Customizable Camera. Read the mod description page, Camera entries in Skyrim.ini is not required. Thanks to Spicycat for suggesting this one.
    Requires SKSE and SkyUI
     
    OPTIONAL
    Fox Shop with Merged Armors by Smokermegadrive.
    http://www.loverslab.com/topic/29836-foxmerged-2/
    *** CREDITS ***
     

    85,672 downloads

    Updated

  8. CITRUS Heads (High Poly Heads)

    Intro:
    This mod overhauls the head meshes and their respective morphs to allow higher poly heads.
     
    These new High-Poly Heads will help when RM3 comes out with it's morph editor to allow you to further customize it while maintaining decent smoothing.
    You can also make more various and extreme morphs for these heads using Mudbox or any 3d editor.
     
    Contains:
    - Female Head and all associated morphs (ECE/Chargen/Nuska/etc...)
    - Female Argonian Head and all associated morphs, along with new lizard style eye blink 'animation'
    - Female Khajit Head and all associated morphs, Along with tweaked vertex alpha blending
    - Updated to contain RM Extra morphs and Expression morphs!
    - Male Head and all associated morphs
    - Male Argonian Heads and all associated morphs. alonog with new lizard style eye blink 'animation'
    - Male Khajit Head and all associated morphs, Along with tweaked vertex Alpha blending
    - Standalone version and Replacer version
     
    Installation:
    Using MO:
    Let MO manage your BSA files (Archive Tab, first checkbox)


    Download EITHER the Replacer File OR the Standalone File
    Install the file and activate in MO
    Make sure CITRUS head is below RM on the left pane. (If using standalone, the ESP order shouldn't matter)
    Switch to archive tab in MO, scroll down to CITRUS, and make sure the checkbox next to the BSA is ticked on.


     
    Using NMM Or Manual:
    I don't install mods though NMM or Manual anymore, so I cannot provide support for installing this way.
    (Nor can I recommend installing this way)
    Some tips though:
    - Extract the BSA
    - Test it's working in-game by using the console command 'twf'
     
    Existing Saves (For Standlone Users):
    If using the standalone version of this file, when you load an existing save the head will not automatically update.
    You will need to manually update your head this way:
    Load your existing save after installing standalone version
    Activate the racemenu by console command 'showracemenu' or any alternate mod that gets you to the racemenu screen
    Save your head as a preset (if not already saved)
    Switch gender back and forth (It will cause RM's Chargen to update the head parts to new citrus heads)
    Load your preset.

    Uninstallation:
    Using MO:
    Untick the mod on the left pane.
    If you ran CK's facegen for the replacer version, simply delete the facegen files in your overwrite folder.

    Compatibility:
    ALWAYS USE WITH LATEST VERSION OF RM!
    Not compatible with EEO (Ethereal Elven Overhaul) - Read Notes
    Not compatible with ECE (And I will not be adding support for it)
    Standalone version is compatible with ECE made followers, Replacer version will make followers lose expressions and their faces cannot be rebuilt in the CK with new heads.
    Not compatible with any race mods that add their own custom head morphs
    Not compatible with any mods that affect the Head Morphs (AKA head .tri files)
    Compatible with Familiar Faces and any other mods that work with RM.
    Compatible with any Body mesh that follows Bethesda's Vanilla seam lines (Basically all of them).

    Custom Races:
     
    If the custom race does not have it's own unique head shape, and does not contain it's own set of unique morphs (head .tri files) then you can do the following:
     
    Replacer - Should be automatically compatible
     
    Standalone - Open up the replacements.ini file and add in the races custom FormID and set it equal to the equivalent citrus head part. (Examples contained within the file should be self-explanatory)
     
    Notes:
    Compatibility for custom popular heads and their morphs such as Ethereal Elven Overhaul and RAN's Head Meshes, ECE morphs, CME morphs were long ago integrated into RaceMenu. Thus making the use of such mods themselves redundant. Or not directly compatible with how RM works.
     
    This mod is based off of RM and it's vast amount of morphs, and as such had ALL of the facial morphs from RM converted to match the new high poly head.
    This by extension means that this head mod already contains the morphs for ECE, RAN's, EEO and CME.
     
    Bottom line is, if it's in RM, it's been fitted for the use of this head.
     
    Textures - Because of the higher poly count on this head, you will see blocky textures more easily. It is recommended you get higher detail normals and diffuse maps to prevent this. (2k works fine for me)
     
    Tools:
    Mudbox 2014
    3dsMax 2014
    CreationKit
    Sublime Text
     
    Credits:
    Expired - Trieditor Maxscript and RM support for standalone heads
    Vioxsis - Taking care of all my absurd requests.
    Jacques00 - Female UV work
    LL unofficial chat - Help debugging
    Blabba
     
    Permissions:
    Do not re-upload elsewhere.
    Otherwise, feel free to do what you wish provided you give the proper credits.

    12,615 downloads

    Updated

  9. Immersive First Person View

    1. Description
    2. Requirements
    3. Installing
    4. Uninstalling
    5. Compatibility & issues
    6. Credits
    7. Similar mods
    8. Changelog
     
     
     
    1. Description
     
    See exactly what your character sees. Look at screenshots or videos for what the mod does.
     
    As of 2.0 the mod no longer has a MCM or ESP. It's now a pure SKSE plugin. There is a text file for configuration in Data/SKSE/Plugins/FirstPersonPlugin.txt
     
    Press Numpad 8 to reload configuration file during playing. You can configure this key in the file as well.
     
    Press Numpad 4 to toggle helmet view. This only makes sense with open face helmets.
     
     
     
    2. Requirements
     
    SKSE 1.6.16 or higher: http://skse.silverlock.org/
    Skyrim latest version
     
     
     
    3. Installing
     
    Exctract Data folder over your Skyrim Data folder or use a mod manager to install.
     
     
     
    4. Uninstalling
     
    Make sure you are not in IFPV when you save game (so headtracking is reset). Then remove files you added when installing or use a mod manager.
     
     
     
    5. Compatibility & issues
     
    Doesn't work properly with 360 degree animations! If you see your character face when running backwards you are using 360 animations.
     
    If nothing happens in game when you switch to first person you must install latest version of SKSE. If you are installing with MO make sure the DLL file ends up in Data/SKSE/Plugins. You may have to manually do this. You can also try starting SKSE loader with administrator privileges.
     
    See comments / posts section for solutions to other problems.
     
     
     
    6. Credits
     
    All people who test and report bugs.
     
     
     
    7. Similar mods
     
    Skyrim - Enhanced Camera
    The Joy of Perspective
     
     
     
    8. Changelog
     
    3.4 - 09/04/2016
    Setting near clip dynamically based on the angle where you look (up or down). See the three profiles above Main. Added lower near clip value indoors. Added option to increase vertical angle restriction past 90 degrees so you can look at your own body better. When you are looking ahead then near clip value is not modified at all (default 15). Should remove all mountain flicker or ENB brightness weirdness. However if you look down you may notice the near clip value change at 45 degrees if you have ENB. Best fix is to re-enable near clip under Main profile with value of about 8 or 10. Slightly increased the view angle restrictions of default configuration. Meaning you can look left or right and up or down more than before.

     

    271,725 downloads

    Updated

  10. Leather Armor and other stuff

    Unless stated otherwise, all outfits are designed for UNPB.
    Leather Armor 1.0 (06-12-14)

     

    Fur Armor 1.0 (06-14-2014)

     

    Light studded armor (06-28-2014)

     

    Rogue Outfit (DA2 Isabella / Guardian of Noctural conversion) (08-02-2014) [updated 10/19/2014]

     

    V1.1 (10/12/2014) : boots fix, courtesy of Circ. Thanks!
    [updated 10/19/2014] : TBBP Patch by Circ (patch, separate download, overwrite files. Note : no panties).

    E'lara armor (08-02-2014)

     

    Vindictus Mix Robes (10-12-2014)

     

    Broken Angel Armor (10-19-2014)

     

    Ladythief (11-15-2014)

     

    DragonSong (12-25-2014)

     

    Bob's Armory (04-25-2015) [new]

    UNPB Conversion of Bob's Armory (author : Mr Dave)
    Supports weight sliders / TBBP / HDT.
    This is a patch containing only the modified assets. You will need the original mod, see instructions in readme.
    For the original mod and screenshots, please go to http://www.nexusmods.com/skyrim/mods/44808/?
     
    --
    Use as you please (as long as you don't try to make money out of it, which should be highly unlikely, but who knows).

    30,705 downloads

    Updated

  11. ACCESSORIZE

    So this is an updated version from the one that was on the nexus. fixed some bugs/issues and added pieces for men
    ACCESSORIZE FOR CBBE
     
    ACCESSSORIZE FOR UNP
    Also here's the Bodyslide info (now all fixed and working perfect!) for custom bodies.
    ACCESSORIZE BODYSLIDE
     
     
    For those wondering this mod won't be on the Nexus. I was told that things like accessories made from Dark Souls/Dragon age etc was not alowed, but seeing as I got many of the pieces from here, I thought it'd be OK to share. If there are any problems please let me know!
     
    Please check out my flickr for more shots of this mod!
     
    Just to make this clear: these are not my meshes! I've taken pieces from games like Tera, Darks souls etc and have put the scarves/pauldrons into individual pieces so you can customize an outfit. I'm not claiming I built any of these--just isolated them into their own nif files and tweaked some textures. It's a small mod with a simple purpose: to add some variety to an outfit. Cheers and have fun!
     
    NMM ready. To access open console (~) and type coc qasmoke. There's a chest in the corner with all the pieces.
     
    Credit to asianboy345 for the Tera armor pieces
    Credit to Zerofrost for the blood armor pauldron
    Credit to XiNAVRO for all his conversions
    Credit to Jackga for his many conversions
    Credit to Caliente for CBBE body and Bodyslide.
    Credit to AlienSlof for the awesome eyepatches.
    Credit to jochan449 for aris pauldrons and slytra for the base suit.

    10,954 downloads

    Updated

  12. [Updated!] Guild Wars 2 Armor Conversions UNP

    Original Game: Guild Wars 2
    Credits: ArenaNET, NCSoft
    Ripped and Converted by: Lady Horus (myself)
     
    About:
    Lots of changes in Version 2 (beta)!
     
    I reworked the entire mod. HDT High Heels is no longer required.
     
    I stopped work on this before it was complete, so there are some missing armors from this update compared to the last. However if you want to use the old version with the new that is absolutely fine as they will not conflict with eachother at all. If you use the previous version (1.0) you WILL need HDT High Heels, though.
     
    I'm not sure if/when I will continue this mod, sorry guys. But, I have been holding on to this as it is for months now, and thought it's doing no good just sitting on my harddrive! So here it is for all of you.
     
    Most of these have male counterparts as well, with the exception of the Eagle and Havroun sets.
     
    Armors included in 2.0 beta:
     
    Heavy:
    Phalanx
    Protector's
    Eagle
     
    Medium:
    Assassin's
    Exemplar (previously called "Anise" in 1.0)
     
    Robe:
    Sorcerer's
    Havroun
     
    Armors from 1.0 not included in 2.0 beta:
     
    Illusionist
    Noble
     
    Coming updates: Until otherwise announced, work on this mod is at a stand-still. I have been working on other projects, but I may return to this mod at a later time.
     
    Screenshots:
     
    Well I tried linking to the main download screenshots here for those of you who browse this via the thread on the forum, but kept having broken images so, I suggest going to the download page if you want to see them!

    37,608 downloads

    Updated

  13. Follower : Shiro Ya

    Chinese name: 诗珞雅
    Transliteration: Shiro Ya
    Japanese name: 白矢
    3 kinds of powerful frost spells, 4 combat styles
    Optional
    Please see the GIF below for details
    UNPB body
    Recruitment location: Dragonsreach
    I suggest using NMM or MO to install this mod


    --------------------------------------------------------------------------------------------------------
    [3DM Forum]▇▇▇▇[天际学园]▇▇▇▇蓿念▇▇▇▇独立随从系列★★★诗珞雅★★★3种强力寒霜法术 4种攻击方式 随你选!▇▇▇▇
    http://bbs.3dmgame.com/thread-4200176-1-1.html
    --------------------------------------------------------------------------------------------------------
    Thanks and Credits
    UNPB Body ---XP32
    UNPB texture ----HelloSanta,modified by 柠珞[3DM]
    SG hair 268 ----HelloSanta
    Enhanced Character Edit ---- ECE team
    Powerful customization Frost magic ---- 2009vipjack

    --------------------------------------------------------------------------------------------------------
    Thanks
    mm777 who remind me to upload her on LL
    听歌 [3DM] who translated instructions to English

    15,790 downloads

    Updated

  14. B. Sotteta Huntress Armor UNPB HDT

    So I liked the Huntress Armor that NSK put together over on the Nexus...
    But, I'm not much on the base UNP body type and having no bounce is so boooooooring, so...
     
    I threw the meshes into Outfit Studio did a convert from UNP to CBBE, then copied the bone weights from the HDT CBBE, and finally converted from CBBE to UNPB, then fixed clipping and saved the nif.
    I did this for each armor, panty, trouser, and anything that needed to have bounce added... both 0 and 1 nif's
     
    All credits for creation of the mod goes to the nsk13 for an outstanding mod.
     
    REQUIREMENTS:
    The original mod: http://www.nexusmods.com/skyrim/mods/57909/?
    All of the original mod's requirements
    HDT (As the body is HDT weighted, duh)
     
    Installation:
    Copy and paste the material from the rar file into the skyrim\data folder over writing the orignal meshes....
     
    Note: Currently no NMM or MO support so manual install...
    Yeah I'm lazy on the installer go figure!!!
     
    V1.2 Update Fixed Bone weighting issue from v1.1
    Now you can use 100 weight.

    3,587 downloads

    Updated

  15. Vie101010 Male Casual Clothing

    Vie Casual Clothes by vie101010 2.0
    -------------------------------
     
    Ancient and long-lost mod with a few casual and formal outfits for males.
    Had this on my HDD for what seems like years.
     
    I'm always seeing it requested so I decided to fix up some of the errors within the mod and make my fixes available since vie's site no longer has the mod and the original has a few bad meshes.
     
     
     
    -Cleaned up the esp, all pieces can still be found in Dragonsreach just like in the original version of the mod.
    -Added specular to formal shoes.
    -Removed erroneous glow shader from casual shirt and jeans.
    -Corrected error in normalmap for Formal Shoes.
     
    All items renamed for clarity:
    -"Vie Casual Clothes"
    -"Vie Formal Suit"
    -"Vie Leisure Suit"
    -"Vie Mainguy Outfit"
    -"Vie Casual Shoes"
    -"Vie Formal Shoes"
     
    If you don't want to climb up to Dragonsreach you can just type 'help vie' in the console and it should return all the form ID's
     
     
    All original content belongs to vie101010
    Restoration efforts and fixes by me.
     
     
    -------------------------------
     
     
    If you have the old version of this mod, remove it before you install this one.

    9,193 downloads

    Updated

  16. Transformation Dark Knight and Paladin (Not Supported)

    Transformation DarkKnight&Paladin BETA.4.7z
    is the main file needed for the mod.
     
    Transformation Eye and Weapons Darknight&paladin ws (1).7z
    is the glowing eye addon and weapon pack.
    You can acquire the new weapons at the forge or through console.
     
    Vindictus Dark Knight Beta Fixed2.7z
    I think it fixes the bug where when you transformed into a dark knight and then back out, everytime after that, when entering combat ie. pressing 'r', it'll trigger the animations. Or something like that according to Broken Mirror.
     
    Here's a version made by Corta that helps "Debulkatize" the dark knight and paladin forms for females.
    http://www.loverslab...aladin-de-clad/
     
    This mod is made from the inspiration of the Vindictus transformation into a Dark Knight/Paladin.
    When you use the spell to either a dark knight or paladin you will transform into either receiving quite a passive stat bonuses.
     
    To start the mod go to the Bannered Mare in Whiterun and talk to the Mysterious Stranger!
     
    Previews


     
    Here is some game-play footage

     

    [spoiler=Just Some Info]Just reposting this if anyone wants it. Luckily I had a backup save.
     
    Here's the vindictus Dark Knight and Paladin mod that was taken down a
    while ago and is no longer supported. The mod itself works great, but
    here's a link if you want to still download it.
     
    I take no credit for the work whatsoever and If the original author(name who I forget and am too lazy to find) wants me to remove this I will fully comply with his/her request.
     

    50,149 downloads

    Updated

  17. Gladiator Heels

    HDT UNP Gladiator Heels
    Gladiator Heels, this mod represents the gladiator style of high heel for a warrior/adventurer/dragonborn.
    It is represented as light armor and will hold up well enough in battle.
    The HDT offsets are preset and all ready for play.
    (info:the offset is 8.5)
    The shoes come in 4 awesome styles:
    Black Leather (Tanning Rack - Leather)
    Brown Leather (Tanning Rack - Leather)
    Rough (Tanning Rack - Misc)
    Glass (Forge - Glass)
     
    Recipes:
    Black Leather - 2 Ebony Ingot, 2 Leather, 2 Leather Strips
    Brown Leather - 1 Ebony Ingot, 2 Leather, 2 Leather Strips
    Rough - 2 Taproot, 2 Leather, 2 Leather Strips
    Glass - 2 Malachite Ingots, 2 Leather Strips
     
     
     
    The items can be found in a large basket behind the counter at Riverwood trader.
    Also can be added via in-game console '~'
    help gladiator
     
    To Do:
    More Textures...
     
    Known Issues:
    No collision (can't be dropped)
    No world model (appears as basic shoes)
     
    What I need done but won't do:
    To add collisions or world models
     
    Credits:
    Big thanks to Erundil for providing tutorials to me (Crafting)
    Thanks to Nightasy for creating those videos
    (also collision, i'll most likely finish later)
     
    Any help on this would be much appreciated. Enjoy!

    10,823 downloads

    Updated

  18. Beastess Lairs

    This mod adds a series of caves to the world of Skyrim.
    I made this mod for my Beastess, because I couldn't find a home that suited my needs.
    It was designed for simple wildling characters, so don't expect underground strongholds, just empty caves where you can sleep and store some items.
     
    The poster girl is not included ^^
     
     

    You can click on these for additional screens, but some of these galleries contains NSFW pictures.





     
     

    The mod is using only vanilla assets. You don't even need DG or DB.
     
     

    The mod will conflict with any mod that alters the areas where the cave entrances are.
     
    Enhanced Landscapes does block the entrance to the Whiterun cave.
    Undeath reportedly blocks the entrance to the cave in Falkreath Hold.
     
     

    SSE Port by nomkaz
    PELTAPALOOZA - Hi-res pelt texture replacer.
    Hectrol CAVES DELUXE HighRes Retex
    Vivid Landscapes - Dungeons and Ruins or Vivid Landscapes - All in One
     
     

    All this was inspired by the lion cave from The Ghost and the Darkness.

    39,623 downloads

    Updated

  19. Dior's Conjunration

    The original author is DiorSoul, that's his username here in LL, for some reason he was unable to post a thread so I help him held the thread, so every part of credit goes to him, not me.
     
    --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
     
     
    -Foreword-
    Apology for my bad English, it is not my first language, please excuse me for using google translate on responses.
    Thanks Jack Queen for her courtesy of letting me use the resources for this mod, thanks!
    This mod adds several new conjurable creatures.
    Conjuration perks will be in effect, magicka costs are reasonable, master spell is actually practical now.
    The following is a story behind this mod, I share with ones held the same passion and love to mighty conjuration!
     
     
     
     
     
    -Screenshots-
    The following screenshots will demonstrate each type of creature available in this mod.
     
     
     
     
    -Brief description-
    This mod introduces a handful of standalone conjuration spells, they won't conflict with anything, and are under perks' influences.
     
    It includes: spells from Novice, Adept, Expert and Master level. Each level contains two spells.
    Conjured creatures will level with players along their journeys, and tend to keep as same level as the player is at.
    Undoubtedly each creatures has level cap, e.g. Novice creatures may not go above level 30.
     
     
    -How to obtain spells-
    Go down Midden in Winterhold College, at the front of lever table you will find a crafting manual, which contains each creature's image and recipe to craft corresponding spell tome. Drop needed ingredients in offering box, pull the lever, if done correctly the spell book should appear in the middle of the forge.
     
     
    -Requirements and Compatibilities-
    As long as you own skyrim you are good to go!
    There is no incompatibility found yet.
     
     
    -Incoming Standalone Follower-
     
     
    For those who have read through the back story, I've got some bonus for ya! This is Celine as a follower, due to languague problems I will publish it later.
     
    V. 1.1 fixed CurseBoss prescription
    new prescription:voidSalts *1,OreOrichalcum *1,GemRuby *1,RuinedBook*1.
     
    changed CurseBoss and Archdemon time
    for 5min.
    -Translation-
    If any Chinese speakers are interested in this mod and wish to get a Chinese version. I have got you covered too! Head over the download section, you will need the DiorConjureV1.0.rar first, then download DiorCouration_Chinese.rar overwrite the main file, and you are good.
     
    使用中文的朋友们得先到下载区把主文件DiorConjureV1.0.rar下载了,然后再下载DiorCouration_Chinese.rar覆盖掉主文件就可以了!
    1.1版请到天际公民下载。原址:http://bbs.skyrimcitizen.net/viewtopic.php?f=2&t=976

    4,441 downloads

    Updated

  20. Raging Moon

    Hello!
     
    This is the Version 2 of the Raging moon "armor". The Version 1 can be seen here but this one makes it obsolete.
     
    The version 2 is a mash-up of some of my favorite mods that I manage to convert to 7base. The first version was more a learning process for me of the 3ds and the CK, but the idea was always to upgrade to a more lore-friendly version and I believe that now the clothing is perfect to fit a barbarian female player or NPC.
     
    What this Mod add to the game:
     
    Clothing:
    - Top;
    - Panties;
    - Raging Moon Boots;
    - Bracers;
    - Amulet.
     
    Weapons (up-gradable):
    - Bow;
    - Hunter Sword.
     
    All with 3 different sets of textures.
     
    How to install:
     
    * if you have the previous Raging Moon version, please remove it first.
     
    - Manual: extract the file, add it to your game folder then activate the RagingMoon.esp.
    - NMM: Add the file and activate it as usual.
     
    How to get the goods:
     
    - Craft the items in the forge under Misc tab; Sword under Steel.
    - type "help raging" in the console (always without commas) and then "player.additem xxxxxxxx", where "xxxxxxxx" is the armor id.
     
    FAQ & Issues:
     
    Version 2.4 - Please uninstall previous versions before updating to 2.4. Some files were removed, FormIDs changed, so your previous equipment will be gone. Just craft/add it again via console.
     
    Q - How to get the different top colors?
    A - After the installation, go to your Skyrim game folder and then to the Data\Meshes\Clothes\RagingMoon\ folder. There you see 4 folders, each one named with the different colors. Just select the files from the folder you want and drag them to the previous folder, replacing everything. I have add a screenshot for each re-texture. The base (default) color is white.
    If you know how to work with NifSkope, just open the ragingmoontop_0, ragingmoontop_1 and ragingmoontop_gnd and simply change the texture (not the t_n.dds, just the first texture file).
     
    Q - Who made this mods?
    A - All the meshes used are from other authors, this is just a mash-up that I would like to share. You can check the authors in the end of this post, I have add links for their main pages.
     
    Q - Any know issues?
    A - Just a couple for now, one that I am trying to fix and other probably not fixable.
    1 - There is a clipping issue between the back part of the panties and the quiver if you use the Belt-Fastened Quivers from Chesko Mod; this is probably not fixable;
    2 - The Hunter Sword is invisible in the left hand if you use the Dual Sheat Redux; I've tried to fix this using the tutorial, but no luck yet. This should be fixable, it's just a question of time.
     
    Q - Why did you not place all the top textures ready to use instead of only use one of a time?
    A - Believe me, I have tried to do that, but the bodyslide went nuts. I copy-past the ragingmoontop_0, ragingmoontop_1, give them different names, changed the textures and add them in the CK, but every time I changed the weights using the showracemenu command,the body start to clipping the clothes or creating gaps between the neck and the body, so I give up and decided to use this primitive method instead. Sorry for that.
     
    Q - Is this compatible with my body mod?
    A - Probably. The body (7B) is embedded in the Nif files, so it will replace the default body. I have tried with my NPC followers who have different body mods than my character and I have no problem.
     
    Future plans:
     
    - Make the Dual Sheath Redux work properly with the Sword;
    - Fix reported Bugs;
     
    Thanks and Credits:
    * Darigaz17 for the Top, panties and Neclace.
    * Sevennity for 7B body.
    * Halo from Halofarm for the Badass Bow (slightly re-texture of his Black bonemold Bow);;
    * Sushiyant for the Hunter Sword (slightly re-texture of his Ariyan Hashashion Sword);
    * ??? for the Blood Hound Armor (Could't track the author, I got the files from here: )
    * Bethesda for TESV Skyrim
    * And all the modders that help improve this amazing game by creating mods, leaving great video tutorials or helping noobs like me!

    12,404 downloads

    Updated

  21. Hentai Casual Karliah

    Casual Karliah -- yet another amateur hentai armor mashup.
     
     
    Light armour, nightingale stats.
    Uses UNP body textures (..I think)
     
    optional mods: karliah replacer, player/karliah Jacket on/off and no underwear texture.
    CONTAINER IN THIEVES HQ
    or ~ help "hentai karliah"
    player.additem etc.
     
     
    All meshes and textures sourced from vanilla or hentai's armors.
     
    # EDIT - uploaded gloves fix.
     
     
    [pics in download]
     
     
     
    ps: I can't do BBP or bodyslide.
    I JUST CAN'T.
     
    I never used either before trying to create in 'em ..and, well..
     
    I don't play enough for learning to be worth it, so if anyone wants to make any of my stuff anything-compatible, go ahead and I'll get you something fun in return!

    17,795 downloads

    Updated

  22. Shared Serana Dialogue - Modder's Resource

    ==-------------------------------==
     
    Shared Serana Dialogue
     
    ==-------------------------------==


     
    Author TheDudeGuy (TDG)
     
     
    v 1.1
     
    ==-------------------------------==
    Description
    ==-------------------------------==
     
    Shared Serana Dialogue is a modder's resource that allows you to easily use Serana's default voice files in your own mod, for a more natural experience. Includes 93 of her voiced dialogue lines.
     
    To access her dialogue, add SharedSeranaDialogue.esm as a master of your own mod, create your dialogue topics, click the "Share Response Data From Info" drop-down in the Topic Info window, and select the ID of the line you'd like to use. Of course, make sure to conditionalize your dialogue appropriately so that the lines will only be spoken by Serana (GetIsVoiceType DLC1SeranaVoice == 1.00, etc)
     
    An attempt was made to preserve all of the original facial Emotion values from the original lines. Lines were included on the basis that they had some universal appeal or utility that was not directly related to the Dawnguard main quest line. Lines specific to the plot were not (and will not be) considered to be added.
     
    ==-------------------------------==
    Requirements
    ==-------------------------------==
    Skyrim
    Dawnguard

    ==-------------------------------==
    EditorIDs / Lines
    ==-------------------------------==
     
    Use or search the list below to find the line you want and then look up the Editor ID for that line in the CK Share Response Data From Info list.
     
     
    Lines Already Shared
    ==-------------------------------==
    These are lines that are shared by Dawnguard *by default* and do not require this mod to access. They are listed below for reference.
     
     
    EditorID Line
    --------------------------------------------------------------------
    DLC1SeranaTurnPlayerDeny3 That makes sense.
    DLC1SeranaTurnPlayerDeny2 Figured.
    DLC1SeranaTurnPlayerDeny1 You're all talk.
    DLC1SeranaTurnPlayerAffirm2 Don't say I didn't warn you.
    DLC1SeranaTurnPlayerAffirm1 All right, then. Hold still.
    DLC1SeranaPlayerTurnTooGood I don't think that's something you want. You're a little... I just don't think you're the type.
    DLC1SeranaPlayerTurnYouSure Are you sure that's something you want? This isn't like picking out a new outfit. You'll be a creature of the night, like me.
    DLC1VQ03SeranaRejoinNM Suit yourself.
    DLC1VQ03SeranaRejoinYes Of course! Let's go.
    DLC1VQ03SeranaRejoinOpening Were you looking for me?
    DLC1VQ03SeranaRejoinRebuff If you want me to come along, it has to just be me and you.
    DLC1VQ03SeranaFollowerSegue I'd... well, I'd come with you, but I don't know if I can trust your friend. | Let me know if you want me along.
     
     
    Lines Shared By Shared Serana Dialogue
    ==-----------------------------------------==
    These lines are made available by this master resource.
     
     
    EditorID Line
    --------------------------------------------------------------------
     
    v1.1:
    _Serana_ReallySurprised Really?
    _Serana_SorryHadToBeThisWay Sorry it had to be this way!
    _Serana_KnewIHeardSomething I knew I heard something!
    _Serana_WheredYouComeFrom Where'd you come from?!
    _Serana_ThatsIt That's it? All right.
    _Serana_NothingElse Nothing else?
    _Serana_Finished Finished?
    _Serana_CantDoEverything I can't do everything for you.
    _Serana_DontThinkSo I don't think so.
     
     
    v1.0:
    _Serana_ThisIsThePlace So... this is the place.
    _Serana_LeadOn Lead on.
    _Serana_NotAGoodTime This isn't really a good time.
    _Serana_WhereHaveYouBeen Where have you been?
    _Serana_ALittleNervous I'm a little nervous about all of this.
    _Serana_Yes Yes?
    _Serana_WhatIsIt Oh, what is it?
    _Serana_WasGoingToSayTheSameThing I was going to say the same thing to you.
    _Serana_ReadyWhenYouAre I'm ready when you are.
    _Serana_HereWeGo All right, here we go.
    _Serana_Incredible Incredible. Simply incredible.
    _Serana_DifficultChoice I know this isn't an easy choice. Take your time.
    _Serana_NervousQuestion Nervous?
    _Serana_Nooo Nooo!
    _Serana_WontFallForTricks I won't fall for your tricks!
    _Serana_WontEndWell This won't end well for you!
    _Serana_NotLikeThis Not like this...
    _Serana_NoMore No, no more!
    _Serana_HandsToYourself Hands to yourself.
    _Serana_IfYouSaySo If you say so.
    _Serana_IfYouSaySo2 All right. If you say so.
    _Serana_AlwaysSpeakYourMind You... always say what you think, don't you?
    _Serana_IThinkYouKnow I think you know.
    _Serana_Delusional And I thought my father was the delusional one.
    _Serana_DoesntSurpriseMe I can't say it surprises me. I kind of figured we were heading for this some day. | I just didn't know when.
    _Serana_MeToo Me too.
    _Serana_YouHaveOneMore Well, I guess now you have one more.
    _Serana_WhatIWantedToHear That's what I wanted to hear.
    _Serana_MissMe I knew you'd miss me.
    _Serana_ThoughtYoudNeverAsk Thought you'd never ask.
    _Serana_Disagree I disagree.
    _Serana_ProbablyNot Probably not.
    _Serana_Impressed I have to admit, I'm impressed. I didn't think you had the spirit for it.
    _Serana_NotGoingToHappen Not going to happen.
    _Serana_ThatsTooBad That's too bad.
    _Serana_YeahSarcastic Yeah.
    _Serana_IHopeSo I hope so.
    _Serana_WhatAboutYou But... what about you?
    _Serana_IThinkItIs I think it is, actually.
    _Serana_NotManyUnderstand Not many people understand the appeal. You keep surprising me.
    _Serana_GiveMeALittleTime I will be. Just give me a little time.
    _Serana_LeaveMeAloneABit Don't... | Just leave me alone for a bit.
    _Serana_IllSeeYouSoonSad I'll see you soon.
    _Serana_IllSeeYouSoonSad2 I'll see you again. Soon._Serana_IllSeeYouSoonNeutral I'll see you soon._Serana_NoWhy No... why?
    _Serana_BroughtThisUpBefore You brought that up before... I think I was a little short with you.
    _Serana_NotTalkingAboutThis I'm not talking about this with you any more.
    _Serana_ForgetIt Forget it.
    _Serana_Understand I understand.
    _Serana_YouKnowWhereToFindMe Oh. All right then. You know where to find me.
    _Serana_YouKnowWhereToFindMe2 You know where to find me if you change your mind.
    _Serana_HopefullyIllSeeYouAgain Good luck out there. Hopefully I'll see you again soon.
    _Serana_Goodbye Oh. All right. Goodbye, then.
    _Serana_CantGetRidOfMeThatEasily You can't get rid of me that easily.
    _Serana_ItIs It is.
    _Serana_NotAsMuch Not as much.
    _Serana_OhISee Oh. I... I see.
    _Serana_ThreesACrowd Three's a crowd. Get rid of your other friend, and I'm yours.
    _Serana_ThreesACrowd2 Not until you get rid of whoever your other friend is.
    _Serana_MakeSomeStories Let's make some more stories.
    _Serana_WheneverYoureReady Whenever you're ready.
    _Serana_LetsGo Let's go.
    _Serana_Exactly Exactly!
    _Serana_CeremonyDegrading The ceremony was... degrading.
    _Serana_NobodyEverAsked Nobody's ever asked me that before. I... I don't know.
    _Serana_NothingIfNotPersuasive Well, let's move then. I'm nothing if not persuasive.
    _Serana_NotForUs Look, you're great. Really. But I just don't think that's for us.
    _Serana_NotSure I'm not sure.
    _Serana_LetsNotRevisitThat Let's not revisit that.
    _Serana_PropositionDecline1 You're sweet. And... I'm not stupid. I can see what you're getting at.
    _Serana_PropositionDecline2 But... that's just not something I'm going to be able to do. Ever.
    _Serana_TalkedEnoughAboutThat I think we've talked about that enough. Come on, now.
    _Serana_AmuletOfMara Oh, I get it. Is that why you're wearing an Amulet of Mara?
    _Serana_LetsPretendThatYouDidnt Let's just pretend that you didn't, all right?
    _Serana_ReadyForHelp If you need some help, I'm ready.
    _Serana_VeryTouching Anyway, this is all very touching, but don't we have some more important things to worry about right now?
    _Serana_TradeReject I think I'll hang on to my things, thank you.
    _Serana_TradeReject2 Why don't you keep your things, and I'll keep mine.
    _Serana_Naive Don't tell me you're that naive.
    _Serana_YouWouldntLikeIt You wouldn't like it.
    _Serana_LetsGetThisOverWith Let's just get this over with.
    _Serana_LetsGetThisOverWith2 Just... try to make it quick.
    _Serana_ThinkingAboutThis I've been thinking about this for a long time.
    _Serana_OutOfYourMind Are you out of your mind?
    _Serana_ThanksForUnderstanding Thank you. Somehow I knew you'd understand.
    _Serana_MarriageDialogue1 Don't you already have someone at home waiting for you?
    _Serana_MarriageDialogue2 I thought you said you were happy together.
    _Serana_MarriageDialogue3 I'm not going to be the one to destroy a marriage. I'm sorry.
    _Serana_MarriageDialogue4 If you're not happy with things... that's not my business.
    _Serana_MarriageDialogue5 I'm not going to be blamed for whatever happens.
    _Serana_MarriageDialogue6 You're sweet to say that, but you need to sort things out on your own. It's not something I'm going to get involved with.
     

    Click here to download this file


    75,114 downloads

    Updated

  23. Charming Higher High Heels

    Charming Higher High Heels (CHHH)
    Compatible with 'Charming High Heels'
    Does not require 'Charming High Heels'
    Mix and match
     
    Contains: Variants of Gold, Chrome, and Black
     
    Also contains 2 lore-friendlier versions of previous vamps.
     
    If heights aren't working (debug):
    High: 13.0
    Medium: 10.0
     
    Addons:
     
     
     
     
     
    I'm extending the project, Wood-Addon has been completed and uploaded
    PSD for plaforms coming soon
     
    Update:
    -New Wood and Cork addon
    1.1 - Fixed High Chrome Platform and Medium Black Platfrom at the forged
    -Added Lite version
     
    Can be crafted under leather at the forge or added via in-game console '~'
    help chhh
     
    Credits:
    Kendo 2 for the mesh edit.
    arison_c for the original 'Charming High Heels'.
    Madcap for requesting the files.

    10,197 downloads

    Updated

  24. Dark Souls Weapons

    I've ported all of the melee Dark Souls weapon meshes to Skyrim. Get the items from a temporary Black Phantom near the Meadery near Whiterun, he has all the weapons in his inventory.
     
    You can find a Solaire follower mod here
    http://www.loverslab.com/files/file/1225-knight-solaire-of-astroa-follower/
    Here are some more screenshots
    http://imgur.com/a/7zsKK

    23,877 downloads

    Updated

  25. Rogue Outfit

    Hi there!
     
    This is the porting to Skyrim of the beautiful HGEC Rogue Armor created by Alecu for TES Oblivion.
     
    The base body is 7B and has weight slide/bouce support. Only requirement is XPMS skeleton.
     
    This MOD adds four clothing items to Skyrim:
    - Body Clothing (Cuirass);
    - Gloves;
    - Boots;
    - Amulet;
     
    No armor rating. You can pick the items in a knapsack at the right of the Riften main gate (check screenshot).
     

    Just a couple of side notes:
    - the original outfit have an huge polygon count, so I did my best to bring the polys down to a more friendly count. The best I could do was around 140k (full equipped), so for weaker machines this could lag a bit or bring a fps hit.
    - the only thing visible that I've changed from the original outfit was the dagger and dagger belt, to avoid ugly clipping with waist weapons;
    - there is a know issue with the gloves in 1st person, that looks weird; I have battle a lot to fix this, but unsuccessful until now.
     
    Future plans:
    Fix reported bugs;
     
    Tools used:
    3DSMax 2012 for the porting and skinning;
    Nifskope for crucial tweakings;
    KgTools for the bodyslide;
    Creation Kit.
     
    Credits and many Thanks!
    Alecu for the amazing Rogue Armor assets and for grant me the permissions to share them.
    Sevenitty for 7B body;
    HidrogensaysHDT for HDT physics;
    Dimon99 for UNP;
    XP32 for XPMS skeleton;
    gerra6 for KgTools
    Bethesda for TES series and releasing CK.
    3DSMax and Nifskope teams.
    All the great modders out there for their work and tutorials.
     
    Thanks and good luck!

    4,792 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