Jump to content

Recommended Posts

Posted

its the literal exact same texture. just the UNP version instead of CBBE.

 

ok. For me it looks different ingame though. I dont seem to be the only one.

Posted

 

I'm having an issue where after setting the preg chance to 0% and then enabling it again will disable pregnancy permanently for that savegame, i used to have this problem in 209 and resettng the mod would re-enable the feature for that session only but in 303 there is no reset option, so no more inflation, leak or pregnancy from sex. (Pregnancy from inserting gems or insemination works fine).

 

Any ideas on what may be causing it? 

 

some of the sliders do weird things.

like setting the cum timer to 1hr disables it

or setting the breast scale to the lowest makes the chest disappear.

 

what i would try is to disable sgo and clean your save with the savegame cleaner or save tool

Using the modeditor ro remove all sgo ref and scrips

load game and then make a fresh save then exit

start game and load fresh save and make another.

then enable sgo and start fresh.

 

you could try deleting the skse data but i haven't found that necessary as once the body gets an update it resets.

 

Thanks, I was hoping to avoid rebuilding my dairy farm, although some would argue that that is the best part :D.

 

I think i'm going to hold off until my next playthrough and I will leave the pregnancy settings alone, or maybe set it to 1% or something. (the reason i set it to 0% is that i didn't want random npc's getting pregnant)

Posted

hmm dark with newest version i\m haveing issue. its not a big issue but thought i would point it out while was reading some threads.

 

first part of the problem is that the cum imflation grapic(the semen comeing out) seems to be getting  stuck staying on more common in version 303 over what 302 had. and with 303 had a new problem so far ive only had it happen on 1 npc.  basicly her body is stuck in cum inflation and squirting. ive already tried a few things but her body would always snap back to same. what makes her unique is that not only is she stuck with the squirting graphic but her stomache is also rounded from it.

Posted

its the literal exact same texture. just the UNP version instead of CBBE.

 

Just wanted to show you how it looks. CBBE HDT Bodyslide body.

 

SGO till version 300

 

 

Bild_002.jpg

 

 

 

SGO version 301 and higher

 

 

Bild_001.jpg

 

 

 

Maybe you could be so friendly and look into what ight be causing this.

 

I have another question. When do the milk effects stop? I never actually bothered, but today I noticed that a whole skyrim day had passed after the last milking and the lactation texture was still on the breast (I also had no Gems incubated). The second screenshot is btw my character with 0% Gems and 0% milk, but milk leak texture is still there. Only way to get rid of it is in the body paint menu in racemenu.

 

Seems a similar problem like this one:

 

Im getting an odd issue where the nipple leak texture is being applied to my PC.

She isnt even preg... 

I've even tried a clean save but the texture is like "fuck you, I aint going anywhere"

 

Your solution to clean up via race menu works well, but one has to clean up after every milking otherwise texture persists.

Posted

Great job on the third incarnation.  :heart:   Works nicely, and I like the deflate effect - most of the ones I've seen have been too opaque, too bright, or had some other issues.  This one fits right in.  A thought I had about that - sometimes the visual deflate effect has extended to next sexlab scene, and the results are... actually very good, even if unintentional.   :lol:  Would be nice to see the effect - possibly slightly toned down - as an optional to trigger a few  seconds after the scene start.   ;)

 

It seems the MCM option to enable/disable incubation in anal scenes is gone in this version.  Not a big deal since like noted it's almost impossible to tell them apart in animation, but since the test is still in script code (defaulting to anal incubation on), was wondering if it was intentional.

 

I also can't seem to get the NIO co-operate no matter how I set the nioverride.ini (and that's with the latest version of racemenu).  It seems to always combine the gem and cum inflation too aggressively.  Couldn't see anything wrong in the code, and I've seen other people posting about similar issue with nioverride so I'm assuming it's a problem with nioverride itself.  In any case I ended up making a small addition to dcc_sgo_EffectInflate_Main script (huge thanks for including the script sources by the way), and for me the results were better.

 

Essentially, I mitigated the cum inflate scaling based on the current scaling from gems.. keeping the sum at highest of OptScaleBellyCum and OptScaleBellyMax, plus 1.5.  I'm not sure if this is an issue that applies to everyone, or if it's some obscure combination of the 300+ mods I'm using.  Either way the change I made was as follows:

dcc_sgo_QuestController Property SGO Auto

Actor Property Who Auto Hidden
Float Property Value Auto Hidden
Float Property ValueMax Auto Hidden
Bool  Property Done Auto Hidden

;; for calculating mitigation of gems + cums
Float Property TotalMax Auto Hidden
Float Property GemScale Auto Hidden

    Event OnEffectStart(Actor Target, Actor From)
    self.Who = Target
    self.Value = 1.0
    self.ValueMax = SGO.OptScaleBellyCum

    ;; Mitigate as needed if filled with gems
    self.TotalMax = SGO.OptScaleBellyMax
    if(self.ValueMax > self.TotalMax)
        self.TotalMax = self.ValueMax
    EndIf
    self.TotalMax += 1.5
    self.GemScale = SGO.BoneGetScale(Target,"NPC Belly","SGO.Scale")
    If((self.GemScale + self.ValueMax) > self.TotalMax)
        self.ValueMax = self.TotalMax - self.GemScale
    EndIf

    self.Done = FALSE

I also had an issue with the cum inflation sort of stretching out a good while after animated scene was done, with a bit larger OptScaleBellyCum values you could see the belly still inflating a while afterwards.  Changed the OnUpdate() event to scale the inflation speed depending on target value, so the inflation has at most 20 steps (which I totally should have made MCM option 1..50 or so, but I'm still kind of intimidated by MCM):

Event OnUpdate()
    float step = self.ValueMax / 20
    If(step < 0.01)
        step = 0.01
    EndIf
    self.Value += step
    If(self.Value >= self.ValueMax)
        self.Value = self.ValueMax
        self.Done = TRUE
    EndIf

Disclaimer: it's a couple of tweaks I made for personal use, and figured I'd toss them here since I liked the results.  The second one was kind of bad coding - I really should have made the 'step' a property and counted it in calling function, instead of recalculating it in every call of the OnUpdate.

Posted

 

its the literal exact same texture. just the UNP version instead of CBBE.

 

Just wanted to show you how it looks. CBBE HDT Bodyslide body.

 

SGO till version 300

 

 

Bild_002.jpg

 

 

 

SGO version 301 and higher

 

 

Bild_001.jpg

 

 

 

Maybe you could be so friendly and look into what ight be causing this.

 

I have another question. When do the milk effects stop? I never actually bothered, but today I noticed that a whole skyrim day had passed after the last milking and the lactation texture was still on the breast (I also had no Gems incubated). The second screenshot is btw my character with 0% Gems and 0% milk, but milk leak texture is still there. Only way to get rid of it is in the body paint menu in racemenu.

 

Seems a similar problem like this one:

 

Im getting an odd issue where the nipple leak texture is being applied to my PC.

She isnt even preg... 

I've even tried a clean save but the texture is like "fuck you, I aint going anywhere"

 

Your solution to clean up via race menu works well, but one has to clean up after every milking otherwise texture persists.

 

 

UNP texture would likely align wrong on CBBE body, so that might explain that.  I remember I had the 'eternal leak' issue on one character with SGO2.  Shrine of Cleansing in Temple of Kynareth was able to remove it as I recall (you need to have unofficial skyrim patch installed to get the shrine).

 

Posted

Ok, I tried the shrine. No effect. The texture persists. Sounds like SGO is having trouble switching the texture back to lactationfree. Anyone knows any mod conflicting with SGO apart from werewolves mod?

Posted

I don't know if anyone's mentioned it but I ran into an issue with Racemenu and SGO textures (it might be a problem with other non-Racemenu textures as well).

 

I did some face sculpting on my character while she had milk leaks showing, then saved that sculpting as a Racemenu preset. When I reloaded that preset on a new character lo and behold the new character had the milk leak applied! Racemenu was unable to remove that texture, and when SGO applied it's milk texture on the new character it occupied a different texture slot, giving me two copies of the leak texture. That new one was correctly removed later on, but the original remained.

 

Did you manage to fix the milk texture issue permanently? I have reseted my texture to default in Racemenu/Bodypaint. It works successfully, but SGO still wont automatically reset the texture to default once the breast are empty.

 

Posted

 

I don't know if anyone's mentioned it but I ran into an issue with Racemenu and SGO textures (it might be a problem with other non-Racemenu textures as well).

 

I did some face sculpting on my character while she had milk leaks showing, then saved that sculpting as a Racemenu preset. When I reloaded that preset on a new character lo and behold the new character had the milk leak applied! Racemenu was unable to remove that texture, and when SGO applied it's milk texture on the new character it occupied a different texture slot, giving me two copies of the leak texture. That new one was correctly removed later on, but the original remained.

 

Did you manage to fix the milk texture issue permanently? I have reseted my texture to default in Racemenu/Bodypaint. It works successfully, but SGO still wont automatically reset the texture to default once the breast are empty.

 

 

if its still stuck you could just edit the milk texture to be 100% alpha

Posted

 

I don't know if anyone's mentioned it but I ran into an issue with Racemenu and SGO textures (it might be a problem with other non-Racemenu textures as well).

 

I did some face sculpting on my character while she had milk leaks showing, then saved that sculpting as a Racemenu preset. When I reloaded that preset on a new character lo and behold the new character had the milk leak applied! Racemenu was unable to remove that texture, and when SGO applied it's milk texture on the new character it occupied a different texture slot, giving me two copies of the leak texture. That new one was correctly removed later on, but the original remained.

 

Did you manage to fix the milk texture issue permanently? I have reseted my texture to default in Racemenu/Bodypaint. It works successfully, but SGO still wont automatically reset the texture to default once the breast are empty.

 

 

I can't remember for certain. Right about the time darkconsole told me about the RaceMenu fix I abandoned that character. The last month or so I've been experimenting with adding difficulty and immersion mods without having crippling script lag.

 

Sorry about that.

Posted

 

 

I don't know if anyone's mentioned it but I ran into an issue with Racemenu and SGO textures (it might be a problem with other non-Racemenu textures as well).

 

I did some face sculpting on my character while she had milk leaks showing, then saved that sculpting as a Racemenu preset. When I reloaded that preset on a new character lo and behold the new character had the milk leak applied! Racemenu was unable to remove that texture, and when SGO applied it's milk texture on the new character it occupied a different texture slot, giving me two copies of the leak texture. That new one was correctly removed later on, but the original remained.

 

Did you manage to fix the milk texture issue permanently? I have reseted my texture to default in Racemenu/Bodypaint. It works successfully, but SGO still wont automatically reset the texture to default once the breast are empty.

 

 

if its still stuck you could just edit the milk texture to be 100% alpha

 

 

I ll check this. Was avoiding this idea, because I tried it a while ago, but my GIMP wont load the DDS plugin. Anyway thx. BTW are you having this issue too? and if no, are you using Racemenu 3.4.5 or NIO 3.4.4? Someone on this thread wrote about RM not beieng good friends with the milk-leak-texture.

 

 

 

I don't know if anyone's mentioned it but I ran into an issue with Racemenu and SGO textures (it might be a problem with other non-Racemenu textures as well).

 

I did some face sculpting on my character while she had milk leaks showing, then saved that sculpting as a Racemenu preset. When I reloaded that preset on a new character lo and behold the new character had the milk leak applied! Racemenu was unable to remove that texture, and when SGO applied it's milk texture on the new character it occupied a different texture slot, giving me two copies of the leak texture. That new one was correctly removed later on, but the original remained.

 

Did you manage to fix the milk texture issue permanently? I have reseted my texture to default in Racemenu/Bodypaint. It works successfully, but SGO still wont automatically reset the texture to default once the breast are empty.

 

 

I can't remember for certain. Right about the time darkconsole told me about the RaceMenu fix I abandoned that character. The last month or so I've been experimenting with adding difficulty and immersion mods without having crippling script lag.

 

Sorry about that.

 

 

Nevermind. Thx. Good luck with the experiment, I did the same last year, managed to get about 3 Weeks of Skyrim in a row without CTD, till Ashal updated SL and I couldnt resist the update.. Then 3 min Gameplay CTD :D. Right now I have dismissed more mods and tweaked Papyrus and ENB so deep that CTD is maybe once in 4-5 hours.

Posted

 

I don't know if anyone's mentioned it but I ran into an issue with Racemenu and SGO textures (it might be a problem with other non-Racemenu textures as well).

 

I did some face sculpting on my character while she had milk leaks showing, then saved that sculpting as a Racemenu preset. When I reloaded that preset on a new character lo and behold the new character had the milk leak applied! Racemenu was unable to remove that texture, and when SGO applied it's milk texture on the new character it occupied a different texture slot, giving me two copies of the leak texture. That new one was correctly removed later on, but the original remained.

 

Did you manage to fix the milk texture issue permanently? I have reseted my texture to default in Racemenu/Bodypaint. It works successfully, but SGO still wont automatically reset the texture to default once the breast are empty.

 

 

If shrine didn't do it... do you still have the 'leaking milk' spell effect in your magic effects list?  I think it was called something like that.

Posted

I'm using Racemenu 3.4.5 with UUNP meshes and Fairskin textures.

I do not appear to be having any issues with milk leak textures persisting and SGO appears to "turn them off" when it's supposed to.

 

So..... not sure if that's helpful information or not, but.... it is what it is.. :)

 

Posted

Someone should do animations for this mod. Like when your character is birthing soulgems you can actually see how they come out.

 

Also it's a bit annoying when soulgems just fly away in a random direction.

Posted

Someone should do animations for this mod. Like when your character is birthing soulgems you can actually see how they come out.

 

Also it's a bit annoying when soulgems just fly away in a random direction.

 

Disable the option to kick dropped objects.

Posted

Hey darkconsole,

 

I love the mod, but I have a request. It may not be logical, but is there a way you can add the scaling of the butt with pregnancy? That'd be fantastic.

 

This came up earlier, the answer was...

 

i tried weight gain, altering the weight causes game stutters (probably due to a queueninode behind the scenes). and i believe the asses to look super dumb after scaling, as they are painted for jiggle not expansion. you get like juts underneath them and such.

 

i also have no intention to migrate to the bodymorph stuff because i have barely enough disk space for a single morph that generates like 2gb of stuff.

 

What comes to..

 

 

Someone should do animations for this mod. Like when your character is birthing soulgems you can actually see how they come out.

 

Also it's a bit annoying when soulgems just fly away in a random direction.

 

Disable the option to kick dropped objects.

 

 

..at least for me they still fly off with many of the animations with kick disabled - I imagine this may depend on body shape, and where exactly the gems are spawned relative to it.  If I remember right, at least animations 2 and 3 are kind of 'peaceful' for me, e.g. they just drop the gems in place.

Posted

 

 

I don't know if anyone's mentioned it but I ran into an issue with Racemenu and SGO textures (it might be a problem with other non-Racemenu textures as well).

 

I did some face sculpting on my character while she had milk leaks showing, then saved that sculpting as a Racemenu preset. When I reloaded that preset on a new character lo and behold the new character had the milk leak applied! Racemenu was unable to remove that texture, and when SGO applied it's milk texture on the new character it occupied a different texture slot, giving me two copies of the leak texture. That new one was correctly removed later on, but the original remained.

 

Did you manage to fix the milk texture issue permanently? I have reseted my texture to default in Racemenu/Bodypaint. It works successfully, but SGO still wont automatically reset the texture to default once the breast are empty.

 

 

If shrine didn't do it... do you still have the 'leaking milk' spell effect in your magic effects list?  I think it was called something like that.

 

 

No, I dont have such an effect in my magic effects list. As far as I remember, that was there in SGO 2, since the betas for version 3 I havent seen it I believe.

 

I'm using Racemenu 3.4.5 with UUNP meshes and Fairskin textures.

I do not appear to be having any issues with milk leak textures persisting and SGO appears to "turn them off" when it's supposed to.

 

So..... not sure if that's helpful information or not, but.... it is what it is.. :)

 

Ok. Seems then either to be a CBBE body or mod conflict issue I am having. As usual I might find the fix someday by coincidence :). Always interesting to see how one mod can give different experience due to different mod setup.

Posted

 

 

 

I don't know if anyone's mentioned it but I ran into an issue with Racemenu and SGO textures (it might be a problem with other non-Racemenu textures as well).

 

I did some face sculpting on my character while she had milk leaks showing, then saved that sculpting as a Racemenu preset. When I reloaded that preset on a new character lo and behold the new character had the milk leak applied! Racemenu was unable to remove that texture, and when SGO applied it's milk texture on the new character it occupied a different texture slot, giving me two copies of the leak texture. That new one was correctly removed later on, but the original remained.

 

Did you manage to fix the milk texture issue permanently? I have reseted my texture to default in Racemenu/Bodypaint. It works successfully, but SGO still wont automatically reset the texture to default once the breast are empty.

 

 

If shrine didn't do it... do you still have the 'leaking milk' spell effect in your magic effects list?  I think it was called something like that.

 

 

No, I dont have such an effect in my magic effects list. As far as I remember, that was there in SGO 2, since the betas for version 3 I havent seen it I believe.

 

I'm using Racemenu 3.4.5 with UUNP meshes and Fairskin textures.

I do not appear to be having any issues with milk leak textures persisting and SGO appears to "turn them off" when it's supposed to.

 

So..... not sure if that's helpful information or not, but.... it is what it is.. :)

 

Ok. Seems then either to be a CBBE body or mod conflict issue I am having. As usual I might find the fix someday by coincidence :). Always interesting to see how one mod can give different experience due to different mod setup.

 

 

The shrine they're referring to is the in the temple of kinersomthing in whiterun.

in one of the rooms there's 3 shrines, activate them

Posted

in the matter i mentioned ealier about how some npc get stuck in inflation look and keep squirting. it seems to be related to if they zone out of where u are and still are inflated and squirting they can get stuck looking like that.

simpliest way to fix would to give us someway to reset the inflation and squirt effect.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...