NicoleDragoness Posted December 22, 2013 Posted December 22, 2013 You could add a center-screen messagebox with a "ok" to click for confirmation.
saladboy21 Posted December 23, 2013 Posted December 23, 2013 I mean something like HP that makes you go through a birth, say by making you crouch or what have you. Â But understood. And thanks for the mod. Your work is appreciated.
Ermiz Posted January 5, 2014 Posted January 5, 2014 I too would appreciate a message popping up when someone is being impregnated/filled so I don't have to keep opening up the MCM to confirm if things worked.
bob11 Posted January 8, 2014 Posted January 8, 2014 I'm not seeing visual changes with this mod for some reason. Â HentaiPregnancy was working correctly, but neither node scaling nor weight scaling seem to do anything.
thilina247 Posted February 3, 2014 Posted February 3, 2014 ok Exactly how do you make an NPC pregnant i mean u knw i checked spells: nothing there weapons: nothing there shouts: wash out sperms Dialog options: nothing there  *I had skyrim for sum time now but first time i actually thought of installing a mod so..... NOOB here HELP!!!
Min Posted February 3, 2014 Posted February 3, 2014 ok Exactly how do you make an NPC pregnant i mean u knw i checked Â
dcp7010 Posted April 1, 2014 Posted April 1, 2014 Hello ! Â I test your mod and it is good but i have no visual change belly when my PC is pregnant !
MrGoogelus Posted April 5, 2014 Posted April 5, 2014 hi, like some stated by others, although everything seems to be working fine, visual changes of the belly are missing. After installing the mod I made a character to test wether everything was working correctly, I got someone pregnant and then spammed the wait option to see the visual changes. Everything worked fine, the belly was growing properly, and there were no problems with the armor either. But when i played with a (newley created) character that i wanted to paly through with, some problems occured. Although  I got several npc pregnant, the belly size did not increase. Infact it did increase sometimes, but then when you came back later it semed like the npc wasn't pregnant at all. This would not have bothered me too much if i could have solved that by reloading the area or if it usually showed the belly correctly but unfortunatly it usually was a flat belly and seldomly a pregnant one. Is it because I changend the pregnancy settings (how long it goes, how fast the belly size increases) while some npc's where pregnant? How do I fix it?  Thanks for making this mod, I hope you can help me solve the problem. And sorry for any mistake, english is not my first language.
h38fh2mf Posted April 6, 2014 Author Posted April 6, 2014 Ok I made an update, try if version 0.3 fixes the belly not changing problems sometimes. Â Edit: sec I forgot to add one config option. Â Edit2: ok try now.
DarknessLilly Posted April 25, 2014 Posted April 25, 2014 (edited) ok i have an issue do not know exactly why this is happening but i start a new game set every thing up every thing seems to be working i get raped the sperm shows up but here is where things stop working the count down for the sperm goes to 0 and nothing happens it does not vanish nothing at all. now i know its not 100% that it will make my PC pregy but should the sperm not vanish after it gets to 0 cause its been 0 for a few hours in game and out. Â Â Â well i got it to work i just forced the pregy through the cheat and it started working closed skyrim and reloaded the save before useing the cheat ctd'd than reloaded again and it was working dono if this would work for every one since its been my expirence that every computer is different what works for one wont work for others lol and i am aware that that should not of fixed it lol but what ever works hehehehe Edited April 26, 2014 by DarknessLilly
Nonexistant49 Posted May 11, 2014 Posted May 11, 2014 So, quick question:That option where you can make it so your PC doesn't have to be involved in the sex to make someone pregnant. Is it supposed to make it so pregnancy can happen between NPCs? Because if not, then I have a problem.
Guest Posted May 11, 2014 Posted May 11, 2014 How difficult would it be to make a pregnant character have a random chance of falling down on their knees into the bleedout animation for a few seconds? Â I imagine you'd only need a spell effect running on the bool "is this actor pregnant". But I don't know anything about modding, so for all I know I'm just stating the obvious and it is very very difficult to put that together.
h38fh2mf Posted May 11, 2014 Author Posted May 11, 2014 Pregnancy should be possible between NPCs but I didn't test it. Â Making such a spell would be very simple, this mod is written to work together with others.
Peiniger Posted May 18, 2014 Posted May 18, 2014 Any way to make Messages like "Lydia is giving birth" or "You are impregnating Ysolda" or something? Â
circ Posted July 4, 2014 Posted July 4, 2014 I like the addition of a little more involved sperm system in this. Â One request though: simple animation for washing out sperm - maybe just use the first sequence from the standing female masturbation animation.
DeepBlueFrog Posted July 5, 2014 Posted July 5, 2014 Modder question: Can you give some details about how another mod can detect if the player is pregnant? Â I would like to add that detection to Hormones.
h38fh2mf Posted July 5, 2014 Author Posted July 5, 2014 Actor mother bool isPregnant = StorageUtil.GetIntValue(mother, "SP_IsPregnant") != 0
DeepBlueFrog Posted July 5, 2014 Posted July 5, 2014 Actor mother bool isPregnant = StorageUtil.GetIntValue(mother, "SP_IsPregnant") != 0  Thanks.  I updated the code on my end.  The next version of Hormones will detect pregnancy from SP and stop updates of the shape as long as SP is tagging the player as pregnant.
h38fh2mf Posted July 5, 2014 Author Posted July 5, 2014 There might be conflict still. If you have modified scale of "NPC Belly", or "NPC L Breast" or "NPC R Breast" and actor becomes pregnant then my mod will store previous values (your modified values) and change the scales to new pregnancy values. When actor is later ending pregnancy then original values are returned - these are values that I saved earlier which is your modified values actually. Â It shouldn't be a big problem though because changing scales isn't permanent. Â You can also check if my mod has changed scales of actor like this: Actor mother bool hasChanged = StorageUtil.HasFloatValue(mother, "SP_Visual") Â This may be a better method because if user has turned off visual changes from my mod then actor can still be pregnant but not have visual changes.
DeepBlueFrog Posted July 5, 2014 Posted July 5, 2014 There might be conflict still. If you have modified scale of "NPC Belly", or "NPC L Breast" or "NPC R Breast" and actor becomes pregnant then my mod will store previous values (your modified values) and change the scales to new pregnancy values. When actor is later ending pregnancy then original values are returned - these are values that I saved earlier which is your modified values actually. Â It shouldn't be a big problem though because changing scales isn't permanent. Â You can also check if my mod has changed scales of actor like this: Actor mother bool hasChanged = StorageUtil.HasFloatValue(mother, "SP_Visual") Â This may be a better method because if user has turned off visual changes from my mod then actor can still be pregnant but not have visual changes. Â Can you cast a float into a bool like that? or are you missing a condition like ' != 0.0' in your statement?
h38fh2mf Posted July 5, 2014 Author Posted July 5, 2014 You can if you copy this line because it uses HasFloat instead of GetFloat, which only checks if the value exists and not what the value is.
DeepBlueFrog Posted July 5, 2014 Posted July 5, 2014 You can if you copy this line because it uses HasFloat instead of GetFloat, which only checks if the value exists and not what the value is. Thanks. That will be in the next update. All I need now is compatibility with Hentai Pregnancy and I will be all set.
sidfu Posted October 12, 2014 Posted October 12, 2014 to bad with this mod once u zone they lose there body and wont get it back till next body size update. also why is StorageUtil 1.3 a req as sexlab already has all the storageutil files?
h38fh2mf Posted October 13, 2014 Author Posted October 13, 2014 This is a very old mod that's why also it says 1.3 or later. I thought I fixed the zone issue in last update?
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