Jump to content

Recommended Posts

Posted
On 10/30/2025 at 3:56 AM, tinkerbelle said:

I'm pretty certain that the Snowshod milk farm was in the Sexlab Stories mod.

 

Weird thing is that I have Sexlab Stories installed, but there's no sign of those things. Maybe JK's Skyrim is overriding it. 

Posted
On 10/31/2025 at 7:25 AM, Darsie said:

Weird thing is that I have Sexlab Stories installed, but there's no sign of those things. Maybe JK's Skyrim is overriding it. 

How old is your version?  For a long time Sexlab Stories was in two parts, the latest version has the second part combined with the first.  I forget what the second part was called or if the Snowshod milk farm was in the first or second part.

In ModOrganizer2 it's easy to check for overwritten parts of a mod.  I can't say about Vortex.  There's always xedit, of course.

 

Posted
On 11/3/2025 at 1:05 AM, tinkerbelle said:

How old is your version?  For a long time Sexlab Stories was in two parts, the latest version has the second part combined with the first.  I forget what the second part was called or if the Snowshod milk farm was in the first or second part.

In ModOrganizer2 it's easy to check for overwritten parts of a mod.  I can't say about Vortex.  There's always xedit, of course.

 

Yep, I use Vortex. 

Looks like I don't have the latest version of Sexlab Stories. I'll update it and see if this improves things. 

Posted
On 4/23/2025 at 9:00 AM, M2Dak said:

I solved this by downgrading Devious Devices NG v0.4.7z to Devious Devices NG v0.3.7.7z

HI from the future, fucking HOW? It is GONE from the downloads

Posted

Hello!
My problem is that the mod stops displaying visual breast enlargement after a certain limit (experimentally obtained value around 2.00, examples in the screenshots).
In the MME settings, I set the slider to a value that would prevent a visual limit in the display of breast size (position at 0.0), which is what I want to achieve.
I thought the problem was in the CBBE 3BA skeleton, but no, the same problem occurs with the vanilla CBBE.
Reinstalling MME did not help either.
I don't have any other body morph mods besides MME and Racemenu. Racemenu works fine.
MME works great in all other aspects, except for the situation I described.
I'd appreciate any help.

 

b1.jpg

b2.jpg

b3jpg.jpg

b4.jpg

b5.jpg

Posted
7 hours ago, Reinold3 said:

Hello!
My problem is that the mod stops displaying visual breast enlargement after a certain limit (experimentally obtained value around 2.00, examples in the screenshots).
In the MME settings, I set the slider to a value that would prevent a visual limit in the display of breast size (position at 0.0), which is what I want to achieve.
I thought the problem was in the CBBE 3BA skeleton, but no, the same problem occurs with the vanilla CBBE.
Reinstalling MME did not help either.
I don't have any other body morph mods besides MME and Racemenu. Racemenu works fine.
MME works great in all other aspects, except for the situation I described.
I'd appreciate any help.

 

b1.jpg

b2.jpg

b3jpg.jpg

b4.jpg

b5.jpg

you need to change max breast scale from default 3-1 to x-1 what you want

Posted
On 11/9/2025 at 10:24 AM, Catenamerica said:

HI from the future, fucking HOW? It is GONE from the downloads

You can still get it from the discord server.

Posted
On 11/11/2025 at 9:05 AM, Ed86 said:

you need to change max breast scale from default 3-1 to x-1 what you want

That didn't help
Installing SLIF with a patch helped

Posted

This issue has probably been solved numerousu times already, but here I go anyway, because nothing's working for me...

I'm using MME with 3ba and I'm getting no breast morphs. I have tried MME config menu, I have tried Tullius version of SLIF morphs. Neither works.


Any help?

 

Posted

Hello, getting a weird bug where the "hey there" dialogue is showing up and select-able, but no options past that except the "never mind". My character is lactating and does go into couples milking animations in other situations. I have tried to reinstall the mod and nothing else seems messed up.

  • 3 weeks later...
Posted

Hello, I was wondering if there is a way to edit the default values of milk maids. like I would like to set the increase per milk to be above the default. Please let me know, It is annoying having to set it for each npc that becomes a milk maid. 

Posted (edited)

Hello, I have a strange problem. After installing the slal mod, the milking animation stopped working. The feeding and fucking animations work, but between milking animations, the previous animation plays, but without sound. Could you tell me what's wrong? I think I uninstalled the slal mod, but nothing changed.

Edited by Miley303
incorrect wording
  • 3 weeks later...
Posted

Would it be possible to make milk maids and slaves not be removed from MME when dead? Or make a toggle in the MCM to do so?
When dying in the mod Player Death Aftermath, I would like my character to retain her boobies :)

I looked up the MilkQUEST.psc source script which mentions these parts (marked in blue). It seems to automatically remove dead actors from the MME Mod. Would be cool if someone (or the Mod author @Ed86) could just delete those parts and recompile the Pex file. I dont have the setup to do so unfortunatly.

Thanks in advance!

 

Function ActorCheck(int t)
    debug.Trace("MilkModEconomy ActorCheck cycle")
    int i = 0
    If PlayerRef != None
        If MilkMaid != PlayerRef && (PlayerRef.GetLeveledActorBase().GetSex() == 1 || MaleMaids == true) && isPregnant(PlayerRef)
            debug.Trace("MilkModEconomy Player is not milkmaid, but pregnant, making player milkmaid")
            AssignSlot(PlayerRef)
        EndIf
        
        While i < MilkMaid.Length
            if MilkMaid != None
                if MilkMaid.IsDead()
                    debug.Trace("MilkModEconomy Actor is dead, removing form MME:" + MilkMaid.GetLeveledActorBase().GetName())
                    SingleMaidReset(MilkMaid)
                elseif (MilkMaid.GetLeveledActorBase().GetSex() == 1 || MaleMaids == true)
                    debug.Trace("MilkModEconomy MilkCycle for milkmaid:" + MilkMaid.GetLeveledActorBase().GetName())
                    MilkCycle(MilkMaid , t)
                endif
            endif
            ;(GetNthAlias(Alias[0])).ForceRefTo(PlayerRef)
            i += 1
        EndWhile
        
        i = 0
        While i < MilkSlave.Length
            if MilkSlave != None
                if MilkSlave.IsDead()
                    debug.Trace("MilkModEconomy Actor is dead, removing form MME:" + MilkSlave.GetLeveledActorBase().GetName())
                    SingleMaidReset(MilkSlave)
                elseif (MilkSlave.GetLeveledActorBase().GetSex() == 1 || MaleMaids == true)
                    debug.Trace("MilkModEconomy MilkCycle for MilkSlave:" + MilkSlave.GetLeveledActorBase().GetName())
                    MilkCycle(MilkSlave , t)
                endif
            endif
            i += 1
        EndWhile

        
        SendModEvent( "MME_MilkCycleComplete" )
    else
        Debug.Messagebox("MilkModEconomy PlayerRef is None, mod is broken, have a nice day!")
    endif
EndFunction

 

Posted
19 hours ago, brain.break.42 said:

Does this mod work with Skyrim AE? 

I'm using AE and it works. Every so often I have an issue with an NPC not being able to help with milking her, but I don't think that's a AE vs. SE problem so much as just an occasional hiccup from the mod itself. 

Posted
On 11/16/2025 at 11:11 AM, fartmancer said:

Hello, getting a weird bug where the "hey there" dialogue is showing up and select-able, but no options past that except the "never mind". My character is lactating and does go into couples milking animations in other situations. I have tried to reinstall the mod and nothing else seems messed up.

 

I've had the same issue. I'm never quite sure what the trigger is for NPCs being able to help. Not sure if she has to wear the cuirass, if she has to have a certain amount of milk... my PC has been painfully engorged with and without a cuirass and unfortunately I can't determine the pattern.

Posted

How would I change to the default breast (detrimental effect) weight from the original 4 pounds to 10 pounds? (my characters got ginormous honkers wanna keep it accurate lmao) I keep looking around the esp in SSEEDIT but I can't seem to find the specific area for that. I checked in the spell section under "MME Breasts" and the magic effect section under "MME breast carry weight" or maybe I'm just looking in the wrong area.

Posted
10 hours ago, theomgdude said:

How would I change to the default breast (detrimental effect) weight from the original 4 pounds to 10 pounds? (my characters got ginormous honkers wanna keep it accurate lmao) I keep looking around the esp in SSEEDIT but I can't seem to find the specific area for that. I checked in the spell section under "MME Breasts" and the magic effect section under "MME breast carry weight" or maybe I'm just looking in the wrong area.

you may need to re-add spell for it to refresh

also there is possibility its edited by script MilkQUEST Function PostMilk(Actor akActor)

Posted
On 11/16/2025 at 3:31 AM, Alisss said:

This issue has probably been solved numerousu times already, but here I go anyway, because nothing's working for me...

I'm using MME with 3ba and I'm getting no breast morphs. I have tried MME config menu, I have tried Tullius version of SLIF morphs. Neither works.


Any help?

 

The Tullius lists and morphs are outdated. Don't use them. They were created for pre-3BAv2 morphs. Use this instead. It includes Tullius, but you want the 004_Custom_3BA lists and morphs. Those were created for the 3BAv2 morphs.

SLIF Bodymorph setting.7z

Posted

Is there a way of 'automating' the milking? So I don't have to use spells to get my companions to milk themselves, or have them use the dwemer pumps?

Posted

Hello, just a quick question, is there any way i can disable milk leak on orgasm? That feature is really interfering with how i play the game.

  • 2 weeks later...

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   1 member

×
×
  • Create New...