Darsie Posted October 31, 2025 Posted October 31, 2025 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.Â
tinkerbelle Posted November 2, 2025 Posted November 2, 2025 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. Â
Darsie Posted November 8, 2025 Posted November 8, 2025 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.Â
Catenamerica Posted November 8, 2025 Posted November 8, 2025 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
Reinold3 Posted November 10, 2025 Posted November 10, 2025 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. Â
Ed86 Posted November 11, 2025 Author Posted November 11, 2025 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. Â you need to change max breast scale from default 3-1 to x-1 what you want
M2Dak Posted November 11, 2025 Posted November 11, 2025 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.
Reinold3 Posted November 12, 2025 Posted November 12, 2025 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
Alisss Posted November 16, 2025 Posted November 16, 2025 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? Â
fartmancer Posted November 16, 2025 Posted November 16, 2025 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.
aaronflrsh05 Posted December 2, 2025 Posted December 2, 2025 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.Â
Miley303 Posted December 2, 2025 Posted December 2, 2025 (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 December 2, 2025 by Miley303 incorrect wording
memati? Posted December 20, 2025 Posted December 20, 2025 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 Â
Polyleritae Posted December 27, 2025 Posted December 27, 2025 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.Â
Polyleritae Posted December 27, 2025 Posted December 27, 2025 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.
theomgdude Posted December 28, 2025 Posted December 28, 2025 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.
Ed86 Posted December 28, 2025 Author Posted December 28, 2025 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)
F DCbyd Posted December 30, 2025 Posted December 30, 2025 MilkMod_MilkPumpsFancy Update.esm Patch .esp
RevanCathal Posted January 1 Posted January 1 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 5
BlueCoral Posted January 1 Posted January 1 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?
Angel019 Posted January 8 Posted January 8 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.
Unknown34 Posted January 24 Posted January 24 On 12/30/2025 at 2:29 PM, F DCbyd said: MilkMod_MilkPumpsFancy Update.esm Patch .esp 6.32 kB · 18 downloads is this for the pumps to work properly?
Breastexpansionfan19 Posted January 27 Posted January 27 Hey! I've managed to get the mod working for the most part but I can't see the breast growth. I've disabled physics using body slide but not sure if there's anything else missing? Any help is appreciated
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now