Jump to content

Recommended Posts

Posted

Darkconsole,

 

Can you detect if a breastfeeding animation is playing something like what Ed86 is doing in MilkMod Economy?

I'm asking because I finally... officially... made my first mod ( HERE ) that initiates the breastfeeding animations through dialogue. I don't personally use the RND stuff, but if you could detect when the animation is playing with YOUR mod, then MY mod could provide the mechanism for milking. 

 

Just a thought...   :)

Ooh, yes please! And here too!

  • 2 weeks later...
Posted

Any chance you could make it so that you can't get impregnated when under the influence of a Chaurus Worm from SD+? The thing has to be fed somehow...

Or would that require a hard dependency? I don't know if it's possible to just search worn items for specific names and if found, disable the trigger?

Posted

Dark Console:

 

Is this mod abandoned?

Still waiting for an update to solve the red crosshair issue.

I really love this mod but this problem is holding me off from re-activating it. :s

Posted

Found a minor incompatibility/hickup with Soulgem Oven II and DDi regarding the breast node management.

 

Both mods have switches in MCM to deactivate breast node management.

And for some reason, DDi breast node management will not deactivate (breasts still get crushed) if the switch for soulgem oven isn't also unchecked.

 

Haven't checked if the same is true the other way around (soulgem ovens breast expansion still working despite unchecked in MCM 'cause DDi is still checked).

 

Don't know if this is due to limitations of papyrus/body management (i.e. all or nothing) or just a freak coincidence with a similar named variable, therefor I wanted to bring it to attention. So far, was able to reproduce it every time.

 

Best regards

Kalderon

Posted

I have a wonderful suggestion for your mod. ^_^ Could you please make it so that the breastfeeding animations in the Non-sexlab animation packs drain milk from the player's breasts? MilkMod Economy does the same thing, and it's very, very kinky.

 

I think it would be a very sexy addition here, too~

Posted

darkconsole,

 

Trying to detect if a player is "pregnant" in SGO without having SGO as a hard dependency.

Using this.... doesn't seem to work...

if Game.GetModbyName("soulgem-oven.esp") != 255
        if GetIntValue(akActor, "SGO.Gem.List", missing = 0) > 0
            Return True
        endif
    endif

Also tried SGO.Gem.Weight .... 

 

How would this be accomplished? 

 

What would be the correct way to check?

 

Thanks

 

Posted

GetModByName check is actually unneeded with StorageUtil. If you need that to run fast you may want to omit it.

Float gweight = StorageUtil.GetFloatValue(who,"SGO.Gem.Weight",missing=0.0)

;; -or- ;;

Int gcount = StorageUtil.FloatListCount(who,"SGO.Gem.List")

Weight check may probably be [consistently] faster. I haven't looked at the sourcecode for StorageUtil to know if its really counting or returning a precalculated result.

 

You have to use the same type function, StorageUtil will let you have multiples of the same name if they are different types. SetFloatValue(none,"mine") is a different variable than SetIntValue(none,"mine") even though they have the same name. I also believe it is case insensitive.

Posted

What is a good body mod for this mod? HDT and with breast and belly nodes?

 

I'm using the newest CBBE HDT body and I really like how it scales. 

 

A pregnant belly looks like a pregnant belly and breasts scale pretty nicely. If you get ridiculously large, they'll start looking ... not so natural shape.... but then... ridiculously large isn't all that natural anyways.

Posted

 

What is a good body mod for this mod? HDT and with breast and belly nodes?

 

I'm using the newest CBBE HDT body and I really like how it scales. 

 

A pregnant belly looks like a pregnant belly and breasts scale pretty nicely. If you get ridiculously large, they'll start looking ... not so natural shape.... but then... ridiculously large isn't all that natural anyways.

 

 

I will give it a try, thanks.

Posted

First, sorry for my English. Second, thanks for the great mod.

 

Did anybody tried this mod with Hookmmerse? I "hooked" this SGO2, Estrus Chorus+, Milk Mod Economy and Fill Her Up. All seems to work with one exception: characters cannot be impregnated in "natural" way, i.e. during sex scene, nor my female character nor companions. I tried to disable female cycles, to increase fertility chance up to 100%, but it didn't help. With enabled debug messages I always get message "Scene was not vaginal to be preggable". The checkbox "include anal" is checked.

 

All characters can be impregnated with spell. And without Hookmmerse natural impgregnation works as intended.

 

I know that this is not the problem with this mod actually, but may be someone could solve this somehow.

Posted

First, sorry for my English. Second, thanks for the great mod.

 

Did anybody tried this mod with Hookmmerse? I "hooked" this SGO2, Estrus Chorus+, Milk Mod Economy and Fill Her Up. All seems to work with one exception: characters cannot be impregnated in "natural" way, i.e. during sex scene, nor my female character nor companions. I tried to disable female cycles, to increase fertility chance up to 100%, but it didn't help. With enabled debug messages I always get message "Scene was not vaginal to be preggable". The checkbox "include anal" is checked.

 

All characters can be impregnated with spell. And without Hookmmerse natural impgregnation works as intended.

 

I know that this is not the problem with this mod actually, but may be someone could solve this somehow.

 

 

Try putting SGO at the bottom of the load order? Maybe that fixes the issue. It could be that Hookmmerse "heijacks" (whatever the spelling is :D ) the impregnation process from SGO when you do it naturally.

 

It's just a hunch but it's worth a try.

Posted

 

First, sorry for my English. Second, thanks for the great mod.

 

Did anybody tried this mod with Hookmmerse? I "hooked" this SGO2, Estrus Chorus+, Milk Mod Economy and Fill Her Up. All seems to work with one exception: characters cannot be impregnated in "natural" way, i.e. during sex scene, nor my female character nor companions. I tried to disable female cycles, to increase fertility chance up to 100%, but it didn't help. With enabled debug messages I always get message "Scene was not vaginal to be preggable". The checkbox "include anal" is checked.

 

All characters can be impregnated with spell. And without Hookmmerse natural impgregnation works as intended.

 

I know that this is not the problem with this mod actually, but may be someone could solve this somehow.

 

 

Try putting SGO at the bottom of the load order? Maybe that fixes the issue. It could be that Hookmmerse "heijacks" (whatever the spelling is :D ) the impregnation process from SGO when you do it naturally.

 

It's just a hunch but it's worth a try.

 

 

Alas, it didn't help. I even tried to load all my ESPs into TES5Edit and searched for conflicts with SGO2. But nothing serious, just minor conflicts with some NPCs (like Sybille Stentor).

 

The message "Scene was not vaginal to be preggable." is from the function IsPregableSituation:

...

If !IsSceneVaginal(ani)

        self.PrintDebug("Scene was not vaginal to be preggable.")

        Return False

    EndIf

...

 

And the function IsSceneVaginal as a whole:

 

Bool Function IsSceneVaginal(sslBaseAnimation ani)

    If(self.OptPregIncludeAnal)

        If(ani.HasTag("Vaginal") == True || ani.HasTag("Anal") == True)

            Return True

        EndIf

    Else

        If ani.HasTag("Vaginal") == True

            Return True

        EndIf

    EndIf

 

    Return False

EndFunction

 

I know almost nothing about programming and Papyrus. And I don't understand what is wrong here. This functions form the SexLab? Should I "hook" this script from SexLab also? (even if I can find it)

 

Moreover Fill Her Up working as usual, i.e. correctly fill character's ass/vagina after anal/vaginal act.

Posted

Anyone know how to disable the Devious Devices integration setting in the mcm menu for soulgem oven? The setting interferes with the Chastity bras of devious devices because it alters breast node management and in conflicts with the breast node management from DDi. The integration section in the soulgem oven menu is greyed out and It won't let me turn the setting off. any ideas how to fix it?

Posted

take the bra off.

 

and i suggest you disable it in DDi and not this mod, if you actually want your breasts to still scale afterwards.

Posted

Sorry if this has been asked before but any chance you could add a dialogue option when PC is milkable to ask a NPC to milk you for when the PC is restrained so doesn't have spell access to use the milking spell

Posted

take the bra off.

 

and i suggest you disable it in DDi and not this mod, if you actually want your breasts to still scale afterwards.

 

I have disabled it in the DDi mcm menu and it doesn't work because Soulgem Oven II has that same setting built into it and they conflict with each other. The section in the Sougem Oven menu that pertains to the devious devices breast management is the integration section but it is checked and greyed out so you can't turn the option off. This is with or without any items equipped. The setting I'm referring to is separate from the breast scaling option. I've seen in other posts people have said that you have to turn the breast management settings off in both DDi and Soulgem Oven to fix it. Anyone know how to fixed the greyed out settings section?

Posted

I have a slight issue in that the "pregnant" spell remains on my character long after all gems were birthed, leaving me with a seemingly permanent -70% speed. I tried removing it via console but it just came back a little later.

Posted

love the mod, thanks for all the fixes.

 

I noticed there are rings in the description, but I cannot find those in my inventory.  They might have been stolen, but I don't recall seeing them.  What are the IDs so I can add them again?

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...