Jump to content

Recommended Posts

Posted

Ed86,

First i really like your Mod, but could you please implement variable BoobBase Sizes? Personally i use more Mods with BreastNodeChanges (May not be the only one), like Estrus Chaurus. But if im Pregnant with Estrus the Boobs change from Small to Big, then from Big to Small. So i did a quick Scanning of your Code and found a (quick and maybe dirty) solution.


You set once at Mod Start the BreastBase and make your changes from this fixed point.

So i added these Lines on Top of the function CurrentSize(akActor):

SetFloatValue(akActor,"MME.MilkMaid.BreastBase", NetImmerse.GetNodeScale(akActor, "NPC L Breast", false))
Float BoobChangeLastTick = GetFloatValue(akActor, "MME.Milkmaid.BoobChangeLastTick", missing =0)

So each time this function is called a new Breastbase is set. Next:

CurrentSize = BreastBase + ( MilkCnt * BoobIncr ) + (( MaidLevel + ( MaidTimesMilked / (( MaidLevel + 1 ) * TimesMilkedMult ))) * BoobPerLvl) - BoobChangeLastTick
BoobChangeLastTick = CurrentSize - BreastBase;
SetFloatValue(akActor, "MME.Milkmaid.BoobChangeLastTick", BoobChangeLastTick)

There is still a Problem with the BoobMaxSize though... hence dirty....

Another Problem occurs with the RemoveMaid function, but i solved this with reverting each Node to 1 instead of Breastsize and Unsetting the BoobChangeLastTick.

Maybe you can add this to your Mod, it would resolve compatibly problems with other Mods that scale their Ninodechanges with fixed Variables like Estrus Chaurus and SexLab Hormones. Im aware its not the best Option, but sadly there is no Mod that handles Changes globally.

Posted

Ed86,

 

Does this 5-24 version have the animation stage change detection built in?

it should
Posted

Ed86,

I've tried installing MME, but I suspect DA-YMOYL has an incompatibility with MME. DA would make me succumb to my wounds as soon as I stubbed my toe and MME wouldn't even start. No MCM, no spell functionality, etc.

I've attached the Papyrus log from a fresh character after a 'setstage ski_config(bla) 1' command. If MME is working for other people with DA-YMOYL I guess I'll just have to leave this mod for the next time I do a clean install without DA.

Papyrus.04.log

Posted

Args found an error in my scripting... it should be

BoobChangeLastTick = ( MilkCnt * BoobIncr ) + (( MaidLevel + ( MaidTimesMilked / (( MaidLevel + 1 ) * TimesMilkedMult ))) * BoobPerLvl);

Running DA myself and got no problems with mme.

 

But i had thesame issue with DA and SD once. It started with a Death wich could not be resolved, cause SD should handle it. But i hadnt visited the dreamworld yet and so i got stuck in infinite Bleedout. Then i canceled Bleedout with the Surrender Option, but as soon as i got minimal Damage i would go in Bleedout again.

 

2 Options:

Load earlier Save where this State did not happen yet or

Go to the Dreamworld (uncheck Start after a Night to remember, equip some Device, let yourelf be enslaved by a follower, get Master key back, Sleep)

Posted

OK... I guess I don't understand how Armor Management is supposed to work.

 

My female PC is wearing a bikini. I go into Armor Management and click ADD..... nothing happens. :)

 

** EDIT **

OK.... duh.... "Read the OP, chajapa!"...... I hate when I'm just stupid...

 

 

 

Posted

Hi again! I figured out what was wrong.

 

Short version: my FNIS didn't work properly

 

Long version: 

I recently moved my Skyrim from my hdd to a new ssd and so Steam still had some files on the hdd. The FNIS I ran was the one still on the old drive and therefore didn't actually apply (silly me)

 

 

After getting FNIS working, the mod does work, albeit only Female followers. My Male followers don't seem to work at all. Is this not yet implemented?

Posted

Ed86,

I've tried installing MME, but I suspect DA-YMOYL has an incompatibility with MME. DA would make me succumb to my wounds as soon as I stubbed my toe and MME wouldn't even start. No MCM, no spell functionality, etc.

I've attached the Papyrus log from a fresh character after a 'setstage ski_config(bla) 1' command. If MME is working for other people with DA-YMOYL I guess I'll just have to leave this mod for the next time I do a clean install without DA.

 i think your game is screwed, idk whats wrong but EVERYTHING is broken

you are probably getting ctds all the time?

 

Hi again! I figured out what was wrong.

 

Short version: my FNIS didn't work properly

 

Long version: 

I recently moved my Skyrim from my hdd to a new ssd and so Steam still had some files on the hdd. The FNIS I ran was the one still on the old drive and therefore didn't actually apply (silly me)

 

 

After getting FNIS working, the mod does work, albeit only Female followers. My Male followers don't seem to work at all. Is this not yet implemented?

 well... males only give sperm, so adding them to milkmaids is kind of pointless, i guess you can call that unsupported

 

OK... I guess I don't understand how Armor Management is supposed to work.

 

My female PC is wearing a bikini. I go into Armor Management and click ADD..... nothing happens. :)

 

** EDIT **

OK.... duh.... "Read the OP, chajapa!"...... I hate when I'm just stupid...

well Armor Management shouldn't even appear in mcm but its skyrim.....

maybe its bcuz 13.05.15 version had that enabled

Posted

 

Ed86,

I've tried installing MME, but I suspect DA-YMOYL has an incompatibility with MME. DA would make me succumb to my wounds as soon as I stubbed my toe and MME wouldn't even start. No MCM, no spell functionality, etc.

I've attached the Papyrus log from a fresh character after a 'setstage ski_config(bla) 1' command. If MME is working for other people with DA-YMOYL I guess I'll just have to leave this mod for the next time I do a clean install without DA.

 

i think your game is screwed, idk whats wrong but EVERYTHING is broken

you are probably getting ctds all the time?

 

It's actually stable until I add MME, this is a clean save aswell. You should have seen the log before Creature Framework stopped dumping in to the log. I should reinstall probably... I did have to get rid of MoreNastyCreatures some time ago, but I made a new save/char. afterwards.

Posted

Ed86,

First i really like your Mod, but could you please implement variable BoobBase Sizes? Personally i use more Mods with BreastNodeChanges (May not be the only one), like Estrus Chaurus. But if im Pregnant with Estrus the Boobs change from Small to Big, then from Big to Small. So i did a quick Scanning of your Code and found a (quick and maybe dirty) solution.

 

You set once at Mod Start the BreastBase and make your changes from this fixed point.

So i added these Lines on Top of the function CurrentSize(akActor):



SetFloatValue(akActor,"MME.MilkMaid.BreastBase", NetImmerse.GetNodeScale(akActor, "NPC L Breast", false))
Float BoobChangeLastTick = GetFloatValue(akActor, "MME.Milkmaid.BoobChangeLastTick", missing =0)
So each time this function is called a new Breastbase is set. Next:



CurrentSize = BreastBase + ( MilkCnt * BoobIncr ) + (( MaidLevel + ( MaidTimesMilked / (( MaidLevel + 1 ) * TimesMilkedMult ))) * BoobPerLvl) - BoobChangeLastTick
BoobChangeLastTick = CurrentSize - BreastBase;
SetFloatValue(akActor, "MME.Milkmaid.BoobChangeLastTick", BoobChangeLastTick)
There is still a Problem with the BoobMaxSize though... hence dirty....

Another Problem occurs with the RemoveMaid function, but i solved this with reverting each Node to 1 instead of Breastsize and Unsetting the BoobChangeLastTick.

Maybe you can add this to your Mod, it would resolve compatibly problems with other Mods that scale their Ninodechanges with fixed Variables like Estrus Chaurus and SexLab Hormones. Im aware its not the best Option, but sadly there is no Mod that handles Changes globally.

 

 

 

Args found an error in my scripting... it should be



BoobChangeLastTick = ( MilkCnt * BoobIncr ) + (( MaidLevel + ( MaidTimesMilked / (( MaidLevel + 1 ) * TimesMilkedMult ))) * BoobPerLvl);
Running DA myself and got no problems with mme.

 

But i had thesame issue with DA and SD once. It started with a Death wich could not be resolved, cause SD should handle it. But i hadnt visited the dreamworld yet and so i got stuck in infinite Bleedout. Then i canceled Bleedout with the Surrender Option, but as soon as i got minimal Damage i would go in Bleedout again.

 

2 Options:

Load earlier Save where this State did not happen yet or

Go to the Dreamworld (uncheck Start after a Night to remember, equip some Device, let yourelf be enslaved by a follower, get Master key back, Sleep)

 

hmmm.. im not sure what you are trying to do, your solution seems to introduce more problems than it solves =)

and since its only visual it doesn't really matter, you can always disable breast scaling

i think its better stay as it is until someone makes body framework

Posted

 

 

Ed86,

I've tried installing MME, but I suspect DA-YMOYL has an incompatibility with MME. DA would make me succumb to my wounds as soon as I stubbed my toe and MME wouldn't even start. No MCM, no spell functionality, etc.

I've attached the Papyrus log from a fresh character after a 'setstage ski_config(bla) 1' command. If MME is working for other people with DA-YMOYL I guess I'll just have to leave this mod for the next time I do a clean install without DA.

 

i think your game is screwed, idk whats wrong but EVERYTHING is broken

you are probably getting ctds all the time?

 

 

It's actually stable until I add MME, this is a clean save aswell. You should have seen the log before Creature Framework stopped dumping in to the log. I should reinstall probably... I did have to get rid of MoreNastyCreatures some time ago, but I made a new save/char. afterwards.

 

i can only guess that esp file tries and fails to load scripts, you did copy those to data\scripts folder?
Posted

 

 

It's actually stable until I add MME, this is a clean save aswell. You should have seen the log before Creature Framework stopped dumping in to the log. I should reinstall probably... I did have to get rid of MoreNastyCreatures some time ago, but I made a new save/char. afterwards.

 

i can only guess that esp file tries and fails to load scripts, you did copy those to data\scripts folder?

 

 

I use NMM to manage my install. It hasn't failed me yet, but there's a first for everything, right?

Posted

 

 

 

 

 

What body type(s) do breast scaling properly?

 

I'm currently using UNP (just the original one), and the scaling obviously applies when strapped into the milking machine or when wearing a milking cuirass, but the breasts appear unscaled whilst otherwise naked or wearing clothes.

are you sure your body/armor support breast scaling?

 

 

Not at all, but as far as I could see, this mod description never mentioned that was necessary. I get really confused about body and armor types. I just created a thread asking for help here:

 

http://www.loverslab.com/topic/47301-can-someone-help-me-understand-the-body-types/

 

okay.... i can add that erm... optional dependency/requirement

 

 

Breasts on CBBE HDT scale into a nipple cone with flat tit around the sides.  It doesn't look right at all.

 

well you should probably write to CBBE HDT support thread that its meshes scale wrong with skeleton bones scaling

MME have MCM option to make breasts look rounder but that doesnt totally fix the problem, at least makes it a bit better. Or you can disable breast scaling. There is no other solution unless we go from skeleton scaling to real physics, which is impossible.

 

 

Downloading the latest groovtama XPMSE skeleton fixed the issue for me.  I guess there was an issue with the version that I had been using.

 

EDIT:  Well, by "fixed', I mean it is fixed with maximum weight set.  If any actor has a body weight less than 100, same problem.  I don't have the same issue with other mods that scale breasts.

 

Posted

so far np with new version but for 1 thing. on first milking i received 1 kajait and orc race milk as a darkelf.

 

update

 

so far since thenits been fine just that first milking gave wrong race milk.

Posted

Hi again! I figured out what was wrong.

 

Short version: my FNIS didn't work properly

 

Long version: 

I recently moved my Skyrim from my hdd to a new ssd and so Steam still had some files on the hdd. The FNIS I ran was the one still on the old drive and therefore didn't actually apply (silly me)

 

 

After getting FNIS working, the mod does work, albeit only Female followers. My Male followers don't seem to work at all. Is this not yet implemented?

 well... males only give sperm, so adding them to milkmaids is kind of pointless, i guess you can call that unsupported

Aww shame, so there is no way of legitimately acquiring the sperm drinks added by the mod unless it's with console commands?

Posted

Im having an issue, my game crashes when after i ask an npc to help me with my breasts.

 

That's not this mod. You probably have JUGs installed and you didn't follow the EXTREMELY specific instructions for making sure that the NonSexLab Animation Pack is installed and working. 

 

Installed does not = working

It has to be working. 

 

If you've got JUGs or GotMilk, please post in their threads for help.

So what's the problem with EFF and this mod exactly?

 

EFF won't leave a follower in hte milking machine when you go into command state ("I need you do do something") with a follower.

As soon as you untarget them, they leave the machine.

 

I would LOVE to use EFF. But that one bug stops me. I mean... what good is it to tell them to do something when you have to stand there and watch them?

 

Vanilla folower system works correctly.

AFT works correctly.

EFF, sadly, does not

 

I don't know if there are any other issues, but that one is a big deal to me and I can't use EFF because of it.

Posted

That's a shame. I know of that issue followers do it with chairs and things to. However since I use the other features of EFF too much I guess I cant use this until EFF is fixed.

Posted

 

Im having an issue, my game crashes when after i ask an npc to help me with my breasts.

 

That's not this mod. You probably have JUGs installed and you didn't follow the EXTREMELY specific instructions for making sure that the NonSexLab Animation Pack is installed and working. 

 

Installed does not = working

It has to be working. 

 

If you've got JUGs or GotMilk, please post in their threads for help.

So what's the problem with EFF and this mod exactly?

 

EFF won't leave a follower in hte milking machine when you go into command state ("I need you do do something") with a follower.

As soon as you untarget them, they leave the machine.

 

I would LOVE to use EFF. But that one bug stops me. I mean... what good is it to tell them to do something when you have to stand there and watch them?

 

Vanilla folower system works correctly.

AFT works correctly.

EFF, sadly, does not

 

I don't know if there are any other issues, but that one is a big deal to me and I can't use EFF because of it.

 

Thank you, i forgot i had that installed and just instantly came over to this one(for obvious reasons) i will check that out

Posted

 

Im having an issue, my game crashes when after i ask an npc to help me with my breasts.

 

That's not this mod. You probably have JUGs installed and you didn't follow the EXTREMELY specific instructions for making sure that the NonSexLab Animation Pack is installed and working. 

 

Installed does not = working

It has to be working. 

 

If you've got JUGs or GotMilk, please post in their threads for help.

So what's the problem with EFF and this mod exactly?

 

EFF won't leave a follower in hte milking machine when you go into command state ("I need you do do something") with a follower.

As soon as you untarget them, they leave the machine.

 

I would LOVE to use EFF. But that one bug stops me. I mean... what good is it to tell them to do something when you have to stand there and watch them?

 

Vanilla folower system works correctly.

AFT works correctly.

EFF, sadly, does not

 

I don't know if there are any other issues, but that one is a big deal to me and I can't use EFF because of it.

 

 

yeah know that sucks with eff but can always use the milker or like me when i milk a companion i go get something to drink,bathroom break play with dogs or dare say clean my room a bit lol.

 

 

Posted

What is the cause for a follower milk maid being stuck in the machine from the first try?  I am on a new game with all the requirements and have only enabled milk production through MCM. Is this mod script heavy?  I can never get this mod to work; however, I may just be running more scripts than my pc can handle.

Posted

What is the cause for a follower milk maid being stuck in the machine from the first try?  I am on a new game with all the requirements and have only enabled milk production through MCM. Is this mod script heavy?  I can never get this mod to work; however, I may just be running more scripts than my pc can handle.

 

This mod is not script heavy. I'm running Skyrim on a mac mini so your machine would have to be pretty weak to be LESS than what I have. :)

 

There are probably a million reasons why your milk maid could get stuck in a machine. And... what do you mean by "stuck"? It won't stop milking her? Or she stands up and gets physically stuck in the machine? If you can "never get this mod to work" I'd start looking at what ELSE you're running, because this mod actually runs well and plays pretty nice with other mods. I have about 30 different profiles in Mod Organizer and every one of them has this mod in it. It wouldn't be a "must have" if it caused problems.. :)

Posted

 

 

Hi again! I figured out what was wrong.

 

Short version: my FNIS didn't work properly

 

Long version: 

I recently moved my Skyrim from my hdd to a new ssd and so Steam still had some files on the hdd. The FNIS I ran was the one still on the old drive and therefore didn't actually apply (silly me)

 

 

After getting FNIS working, the mod does work, albeit only Female followers. My Male followers don't seem to work at all. Is this not yet implemented?

 well... males only give sperm, so adding them to milkmaids is kind of pointless, i guess you can call that unsupported

 

Aww shame, so there is no way of legitimately acquiring the sperm drinks added by the mod unless it's with console commands?

 

i think when you put male npc on milkpump, you can make him milkmaid, the only part of script that supports males is milkpump fuckmachine mode , all other parts ignore them or at least should

 

What is the cause for a follower milk maid being stuck in the machine from the first try?  I am on a new game with all the requirements and have only enabled milk production through MCM. Is this mod script heavy?  I can never get this mod to work; however, I may just be running more scripts than my pc can handle.

how exactly stuck?

you can use walk here/do something, follow me and walk some distance, or maybe hit npc

i dont know, probably not if you dont milk 10+ npcs at same time

this mod is script based, its performance is limited by your skyrim script engine

Posted (edited)

when i go to sleep and wake up after installing this, suddenly my characters jugs weigh over 80 pounds, once they weighed 130 pounds and i get encumbered. I tried reinstalling it, and using loot to sort plugins, but too much milk keeps accumulating eerytime i sleep.

only setting i change is disable any changes to body and breasts. Any suggestions?

 

I also dont get well milked buff sometimes, then after i milk her again after 1 bottle accumulates, then i get the buff.

 

using skyrim redone, sexlab defeat, devious integration and dragon combat overhaul as the only 2 other mods that are not armor or cosmetic mods.

 

Lastly can you add some *insta milk* feature to the machines or something, i really love the milking animation, but with so much milk i dont wanna stare at her being milked for 10 hours, thats just torture.

Oh and awesome mod otherwise.

Edited by randomguy2015
Posted

when i go to sleep and wake up after installing this, suddenly my characters jugs weigh over 80 pounds, once they weighed 130 pounds and i get encumbered. I tried reinstalling it, and using loot to sort plugins, but too much milk keeps accumulating eerytime i sleep.

only setting i change is disable any changes to body and breasts. Any suggestions?

 

I also dont get well milked buff sometimes, then after i milk her again after 1 bottle accumulates, then i get the buff.

 

using skyrim redone, sexlab defeat, devious integration and dragon combat overhaul as the only 2 other mods that are not armor or cosmetic mods.

 

Lastly can you add some *insta milk* feature to the machines or something, i really love the milking animation, but with so much milk i dont wanna stare at her being milked for 10 hours, thats just torture.

Oh and awesome mod otherwise.

its either you have too much lactacid for too long or you did not follow instructions during update

in 1st variant you should stop drinking it and wait probably few days b4 its effect wear off

in 2nd probably mod reset will help, if not then clean save and savetool

 

instant? i dont think so... maybe extra few milks per tick

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