ricolliv Posted December 14, 2019 Share Posted December 14, 2019 I am new to modding games but as I have slowly delved into it, I am getting the concept of it but am still a beginner of sorts. I have tried researching this but can't seem to find any posts that could help me. I seem to be having an issue where the body settings from Bodyslide are working fine on all female NPCs except for any NPCs that are affected by Amorous Adventures. Outside of the SL animations, they have the desired CBBE body but once they enter into an animation with anyone, they don't have the Bodyslide body applied anymore until after the animation is finished. I have Immersive Wenches and Flower Girls installed and they have the CBBE Bodyslide body applied outside of and during their animations with others, but not the AA NPCs. I use Vortex as my mod manager and below is my list of mods (sorry for formatting, I don't know if there is a way to post list without having to resort to screencaps/snipping tool). The load order is automatically set by Vortex and has worked for me so far outside of this one issue. Outside of this, I have realistically no issues with my mods outside of the occasional misalignment. If anyone knows why this is or if there is a fix, I'd greatly appreciate the help! Link to comment
GodSmack Posted December 14, 2019 Share Posted December 14, 2019 18 hours ago, ricolliv said: I am new to modding games but as I have slowly delved into it, I am getting the concept of it but am still a beginner of sorts. I have tried researching this but can't seem to find any posts that could help me. I seem to be having an issue where the body settings from Bodyslide are working fine on all female NPCs except for any NPCs that are affected by Amorous Adventures. Outside of the SL animations, they have the desired CBBE body but once they enter into an animation with anyone, they don't have the Bodyslide body applied anymore until after the animation is finished. I have Immersive Wenches and Flower Girls installed and they have the CBBE Bodyslide body applied outside of and during their animations with others, but not the AA NPCs. I use Vortex as my mod manager and below is my list of mods (sorry for formatting, I don't know if there is a way to post list without having to resort to screencaps/snipping tool). The load order is automatically set by Vortex and has worked for me so far outside of this one issue. Outside of this, I have realistically no issues with my mods outside of the occasional misalignment. If anyone knows why this is or if there is a fix, I'd greatly appreciate the help! Bijin uses its own tex/mesh for their NPCs, which affect every npc/lover/follower affected by amorous adventures. You will either have to create a overwrite mod that overwrites each npcs body with your body manually or live with it, there are other options but they are more trouble than they are worth. Link to comment
ricolliv Posted December 15, 2019 Author Share Posted December 15, 2019 5 hours ago, GodSmack said: Bijin uses its own tex/mesh for their NPCs, which affect every npc/lover/follower affected by amorous adventures. You will either have to create a overwrite mod that overwrites each npcs body with your body manually or live with it, there are other options but they are more trouble than they are worth. I see. Yeah, it's not a bad thing to accept it as is, I was just hoping there would be a viable way to apply the Bodyslide/CBBE settings to the AA NPCs that wouldn't be too much trouble. Also, all of the Bjinn NPCs have the Bodyslide settings applied, whether they are AA affiliated or not. It's just in the actual NSFW animations where the AA NPCs don't have the body applied. And out of curiosity, what would have to be done in terms of the overwrite mod? Does that mean creating a mod myself or something of that sort? Link to comment
GodSmack Posted December 15, 2019 Share Posted December 15, 2019 18 minutes ago, ricolliv said: I see. Yeah, it's not a bad thing to accept it as is, I was just hoping there would be a viable way to apply the Bodyslide/CBBE settings to the AA NPCs that wouldn't be too much trouble. Also, all of the Bjinn NPCs have the Bodyslide settings applied, whether they are AA affiliated or not. It's just in the actual NSFW animations where the AA NPCs don't have the body applied. And out of curiosity, what would have to be done in terms of the overwrite mod? Does that mean creating a mod myself or something of that sort? you would have to copy your current body slide settings and go into every bijin mod and replace the bodies with yours Link to comment
Guest Posted December 15, 2019 Share Posted December 15, 2019 Months ago I'd written a Python script to help me with replacing bodies and skeletons from several mods without having to dab in their esp entries. This is a general purpose file replacer that you can pass some name parameters to make it show only what you are interested in. For instance, for the body alone you need to replace femalebody_0.nif and femalebody_1.nif. Example: File: F:\Program Files (x86)\Steam\steamapps\common\Skyrim\Mods\BodySlide - Body\meshes\actors\character\character assets\femalebody_0.nif Search path: F:\Program Files (x86)\Steam\steamapps\common\Skyrim\Mods Starts with: Not starts with: 1st,male Contains: body Not contains: werewolf Ends with: _0.nif Not ends with: Then it will start prompting you if you want to replace each file that met your name conditions. Do the same for femalebody_1.nif (and if you need, femalefeet_x.nif and femalehands_x.nif). You will still need to replace the body textures for those mods manually, but that's something you generally only do once, unlike bodyslided bodies. The script should work in both Python 2 and 3 and it uses all of your cores to scan your search path. A hash is calculated for each file as to prevent it from showing files that are the same as the one you want to replace with. replace_files.py Link to comment
ricolliv Posted December 16, 2019 Author Share Posted December 16, 2019 18 hours ago, Hawk9969 said: Months ago I'd written a Python script to help me with replacing bodies and skeletons from several mods without having to dab in their esp entries. This is a general purpose file replacer that you can pass some name parameters to make it show only what you are interested in. For instance, for the body alone you need to replace femalebody_0.nif and femalebody_1.nif. Example: File: F:\Program Files (x86)\Steam\steamapps\common\Skyrim\Mods\BodySlide - Body\meshes\actors\character\character assets\femalebody_0.nif Search path: F:\Program Files (x86)\Steam\steamapps\common\Skyrim\Mods Starts with: Not starts with: 1st,male Contains: body Not contains: werewolf Ends with: _0.nif Not ends with: Then it will start prompting you if you want to replace each file that met your name conditions. Do the same for femalebody_1.nif (and if you need, femalefeet_x.nif and femalehands_x.nif). You will still need to replace the body textures for those mods manually, but that's something you generally only do once, unlike bodyslided bodies. The script should work in both Python 2 and 3 and it uses all of your cores to scan your search path. A hash is calculated for each file as to prevent it from showing files that are the same as the one you want to replace with. replace_files.py 8.91 kB · 1 download I'm not familiar with Python. What is that and would you be able to help me with any sort of guidance? Because I was able to to determine that this issue is only affecting NPCs that are also affected by the Bjinn mods Link to comment
ricolliv Posted December 16, 2019 Author Share Posted December 16, 2019 42 minutes ago, ricolliv said: I'm not familiar with Python. What is that and would you be able to help me with any sort of guidance? Because I was able to to determine that this issue is only affecting NPCs that are also affected by the Bjinn mods Fortunately I was able to fix the solution after finding these two mods. Bijin Family Bodyslides - CBBE and UUNP SE: https://www.nexusmods.com/skyrimspecialedition/mods/16097?tab=description Bijin Skin for Bijin Family SE: https://www.nexusmods.com/skyrimspecialedition/mods/20126/?tab=description The first for obvious reasons and the second one to fix any potential seam lines caused by the Bijin head on the CBBE/Bodyslide body. Tested the game after installation and my issue was fixed. I appreciate the advice and input though! Link to comment
Guest Posted December 16, 2019 Share Posted December 16, 2019 5 hours ago, ricolliv said: I'm not familiar with Python. What is that and would you be able to help me with any sort of guidance? Because I was able to to determine that this issue is only affecting NPCs that are also affected by the Bjinn mods You just install Python 2 or 3 from https://www.python.org and double click the script i've attached. And no, this issue will affect any NPC that has custom body meshes. They will use the body meshes that their plugin entries tell them to use, in this case the ones that came included with the mod. Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.