RedPassenger Posted December 6, 2016 Posted December 6, 2016 Is there waist scaling during pregnancy? If there isn't it would be great to have, because increasing the waist scale actually makes my character looks much more realistically pregnant
Ed86 Posted December 6, 2016 Posted December 6, 2016 Is there waist scaling during pregnancy? If there isn't it would be great to have, because increasing the waist scale actually makes my character looks much more realistically pregnant no, probably
davidbonde Posted December 13, 2016 Posted December 13, 2016 would it be possible to have im MCM menu a real scale of term rather than in hours. so for eg if term is set 30days then x 8.8 to show full term as would be in real life. then rather than show how long term has been in hours, show in days/weeks or "half term" etc
Ed86 Posted December 14, 2016 Posted December 14, 2016 would it be possible to have im MCM menu a real scale of term rather than in hours. so for eg if term is set 30days then x 8.8 to show full term as would be in real life. then rather than show how long term has been in hours, show in days/weeks or "half term" etc so if i understood correctly you want "terms" instead of actual time in mcm? im not sure why you want it, if you want immersion, you can use beeingfemale its a lot more immersive than simple HP
davidbonde Posted December 14, 2016 Posted December 14, 2016 would it be possible to have im MCM menu a real scale of term rather than in hours. so for eg if term is set 30days then x 8.8 to show full term as would be in real life. then rather than show how long term has been in hours, show in days/weeks or "half term" etc so if i understood correctly you want "terms" instead of actual time in mcm? im not sure why you want it, if you want immersion, you can use beeingfemale its a lot more immersive than simple HP well i just wanted something that gave a better idea of how long the pregnancy was taking insted of 172hrs for eg, would their belly be showing by then? is that half term/half way thru pregnancy? hold on, i will get a calculator out and work it out, set to 30days pregnancy term, divide hours into 24 for days, wok out how 30days multiplys to 9months.... Or just have something simple like i mentioned above.
WaxenFigure Posted December 14, 2016 Posted December 14, 2016 would it be possible to have im MCM menu a real scale of term rather than in hours. so for eg if term is set 30days then x 8.8 to show full term as would be in real life. then rather than show how long term has been in hours, show in days/weeks or "half term" etcso if i understood correctly you want "terms" instead of actual time in mcm?im not sure why you want it, if you want immersion, you can use beeingfemale its a lot more immersive than simple HP well i just wanted something that gave a better idea of how long the pregnancy was taking insted of 172hrs for eg, would their belly be showing by then? is that half term/half way thru pregnancy? hold on, i will get a calculator out and work it out, set to 30days pregnancy term, divide hours into 24 for days, wok out how 30days multiplys to 9months.... Or just have something simple like i mentioned above. How about how many hours are left instead of how many hours have passed. Change the HentaiPregnancy.psc file and alter the GetPregnancyList function like this: string[] function getPregnancyList() string[] plist = new string[50] int i = 0 while i < PregnantActors.Length if PregnantActors[i].getState() != "ReadyForPregnancy" if PregnantActors[i].getState() == "PostPregnancy" plist[i] = PregnantActors[i].getMother().GetActorBase().GetName() + " By " + PregnantActors[i].getFather().GetActorBase().GetName() + " " + (PregnantActors[i].DurationHours() + PregnantActors[i].PostDurationHours()) - PregnantActors[i].getCurrentHour() + "hr (Post)" else plist[i] = PregnantActors[i].getMother().GetActorBase().GetName() + " By " + PregnantActors[i].getFather().GetActorBase().GetName() + " " + PregnantActors[i].DurationHours() - PregnantActors[i].getCurrentHour() + "hr" endif else plist[i] = "" endIf i += 1 endWhile return plist endFunction
davidbonde Posted December 14, 2016 Posted December 14, 2016 would it be possible to have im MCM menu a real scale of term rather than in hours. so for eg if term is set 30days then x 8.8 to show full term as would be in real life. then rather than show how long term has been in hours, show in days/weeks or "half term" etcso if i understood correctly you want "terms" instead of actual time in mcm?im not sure why you want it, if you want immersion, you can use beeingfemale its a lot more immersive than simple HP well i just wanted something that gave a better idea of how long the pregnancy was taking insted of 172hrs for eg, would their belly be showing by then? is that half term/half way thru pregnancy? hold on, i will get a calculator out and work it out, set to 30days pregnancy term, divide hours into 24 for days, wok out how 30days multiplys to 9months.... Or just have something simple like i mentioned above. How about how many hours are left instead of how many hours have passed. Change the HentaiPregnancy.psc file and alter the GetPregnancyList function like this: string[] function getPregnancyList() string[] plist = new string[50] int i = 0 while i < PregnantActors.Length if PregnantActors[i].getState() != "ReadyForPregnancy" if PregnantActors[i].getState() == "PostPregnancy" plist[i] = PregnantActors[i].getMother().GetActorBase().GetName() + " By " + PregnantActors[i].getFather().GetActorBase().GetName() + " " + (PregnantActors[i].DurationHours() + PregnantActors[i].PostDurationHours()) - PregnantActors[i].getCurrentHour() + "hr (Post)" else plist[i] = PregnantActors[i].getMother().GetActorBase().GetName() + " By " + PregnantActors[i].getFather().GetActorBase().GetName() + " " + PregnantActors[i].DurationHours() - PregnantActors[i].getCurrentHour() + "hr" endif else plist[i] = "" endIf i += 1 endWhile return plist endFunction or just have some consistency. so if time is set in days with a max of 30days for whatever reason, have time left to go or time been pregnant in days too rather than hours, just makes it 'simple' to know that way
WaxenFigure Posted December 15, 2016 Posted December 15, 2016 or just have some consistency. so if time is set in days with a max of 30days for whatever reason, have time left to go or time been pregnant in days too rather than hours, just makes it 'simple' to know that wayHours left is useful if you want to deal with the birth somehow, days is not granular enough but an adjustment to show days until the last day and then show hours would be easy enough. string[] function getPregnancyList() string[] plist = new string[50] int i = 0 int j = 0 while i < PregnantActors.Length int Remainder = PregnantActors[i].getDurationHours() - PregnantActors[i].getCurrentHour() string TimeDesc = "hrs left" if Remainder < 0 Remainder = Remainder + PregnantActors[i].getPostDurationHours() TimeDesc += " (Post)" if Remainder > 24 Remainder = Remainder / 24 TimeDesc = " days left (Post)" endif elseif Remainder > 24 Remainder = Remainder / 24 TimeDesc = " days left" endif if Remainder > 0 plist[j] = PregnantActors[i].getMother().GetLeveledActorBase().GetName() + " By " + PregnantActors[i].getFather().GetLeveledActorBase().GetName() + " " + Remainder + TimeDesc j += 1 endIf i += 1 endWhile return plist endFunction Also requires the addition of these two functions to the HentaiPregnantActorAlias.PSC file: int function getDurationHours() return DurationHours endFunction int function getPostDurationHours() return PostDurationHours endFunction I tested this and it works. I also modified it to remove the blank lines the original left when the "Post Pregnancy" period ends.
Ed86 Posted December 20, 2016 Posted December 20, 2016 ... hm... i guess something like this... maybe it even works + slif integration SexLabHentaiPregnancy 1.19g.7z
Zeorik Posted December 22, 2016 Posted December 22, 2016 Does anyone else have a weird issue where he belly node keeps... "flickering"? At first I thought it was just my use of multiple mods that affected the belly node, but even removing Fill Her Up and Sexlab Parasites.... nothing changed. It still seems to flicker between it's current size and 'default'. As a note, I was/ tried using both CANS and Sexlab Inflation Framework to make the mods play nice together, though since then I'm unsure if this is even related.
davidbonde Posted December 24, 2016 Posted December 24, 2016 well the change of the time worked better now, countdown in days then in hours is good. shame nothing happened after that thou even thou i had set to 100% child and had soulgem plugin included
Ed86 Posted December 31, 2016 Posted December 31, 2016 SexLabHentaiPregnancy 1.19h small changes to scaling on qotsafan request for slif SexLabHentaiPregnancy 1.19h.7z
atlas117 Posted January 7, 2017 Posted January 7, 2017 I'm having trouble getting this to work with werewolves. Specifically futa werewolves created using SOS UNP and Sexlab Werewolves. Regular male werewolves work fine, but neither inflation nor pregnancy work with futa werewolves. Here's my load order if it helps. Skyrim.esm Update.esm Unofficial Skyrim Patch.esp Dawnguard.esm Unofficial Dawnguard Patch.esp Dragonborn.esm Unofficial Dragonborn Patch.esp HearthFires.esm Unofficial Hearthfire Patch.esp Skyrim Project Optimization - Full Version.esm ClimatesOfTamriel.esm RaceCompatibility.esm SexLab.esm CreatureFramework.esm SexLabAroused.esm Schlongs of Skyrim - Core.esm HentaiPregnancy.esm HighResTexturePack01.esp HighResTexturePack02.esp HighResTexturePack03.esp Unofficial High Resolution Patch.esp SkyUI.esp Brawl Bugs CE.esp Nicer-Looking Khajiit.esp EveryVampireEyesGrow.esp Alternate Start - Live Another Life.esp Starting Spell Choice.esp Patch - Starting Spell Choice - Live Another Life.esp ClimatesOfTamriel-Dungeons-Hazardous.esp ClimatesOfTamriel-Interiors-Cold.esp ClimatesOfTamriel-Dawnguard-Patch.esp ClimatesOfTamriel-Dragonborn-Patch.esp Remove Interior Fog V2 - Full Version.esp Character Creation Overhaul.esp CCO - Dynamic Skill Progression.esp CCO - Diverse Races And Genders.esp AmazingFollowerTweaks.esp ToL_Core_by_Brevi.esp ToL_SKSE_by_Brevi.esp Werewolves.esp HPSoulGemBirth.esp BVFE_Serana.esp Vampire Lord Serana Fixed.esp Door_To_Valerica's_Study.esp Auto Unequip Ammo.esp Auto Unequip Helmet.esp Predator Vision.esp Vampire_NoSunDamage_Hoods&Helmets.esp Real Feeding V3.esp BFT Ships and Carriages.esp CustomBreezehomeUpgrades.esp quest_nomercy.esp quest_seaofghosts.esp quest_andtherealmsofdaedra.esp quest_thebiggertheyare.esp quest_sorcery.esp dD - Realistic Ragdoll Force - Reduced.esp RaceMenuPlugin.esp RaceMenu.esp RaceCompatibilityUSKPOverride.esp CustomRaces.esp SexLabMatchMaker.esp SexLabWerewolves.esp MoreNastyCritters.esp FNIS.esp SexLabNudeCreatures.esp SexLabNudeCreaturesDG.esp SexLabNudeCreaturesDB.esp HentaiCreatures.esp BDVanillaCritters.esp XPMSE.esp SOSRaceMenu.esp Schlongs of Skyrim.esp SOS - VectorPlexus Muscular Addon.esp SOS - VectorPlexus Regular Addon.esp SOS - B3lisario UNP Addon.esp SLAnimLoader.esp SexLabDefeat.esp
Ed86 Posted January 7, 2017 Posted January 7, 2017 I'm having trouble getting this to work with werewolves. Specifically futa werewolves created using SOS UNP and Sexlab Werewolves. Regular male werewolves work fine, but neither inflation nor pregnancy work with futa werewolves. Here's my load order if it helps. Skyrim.esm Update.esm Unofficial Skyrim Patch.esp Dawnguard.esm Unofficial Dawnguard Patch.esp Dragonborn.esm Unofficial Dragonborn Patch.esp HearthFires.esm Unofficial Hearthfire Patch.esp Skyrim Project Optimization - Full Version.esm ClimatesOfTamriel.esm RaceCompatibility.esm SexLab.esm CreatureFramework.esm SexLabAroused.esm Schlongs of Skyrim - Core.esm HentaiPregnancy.esm HighResTexturePack01.esp HighResTexturePack02.esp HighResTexturePack03.esp Unofficial High Resolution Patch.esp SkyUI.esp Brawl Bugs CE.esp Nicer-Looking Khajiit.esp EveryVampireEyesGrow.esp Alternate Start - Live Another Life.esp Starting Spell Choice.esp Patch - Starting Spell Choice - Live Another Life.esp ClimatesOfTamriel-Dungeons-Hazardous.esp ClimatesOfTamriel-Interiors-Cold.esp ClimatesOfTamriel-Dawnguard-Patch.esp ClimatesOfTamriel-Dragonborn-Patch.esp Remove Interior Fog V2 - Full Version.esp Character Creation Overhaul.esp CCO - Dynamic Skill Progression.esp CCO - Diverse Races And Genders.esp AmazingFollowerTweaks.esp ToL_Core_by_Brevi.esp ToL_SKSE_by_Brevi.esp Werewolves.esp HPSoulGemBirth.esp BVFE_Serana.esp Vampire Lord Serana Fixed.esp Door_To_Valerica's_Study.esp Auto Unequip Ammo.esp Auto Unequip Helmet.esp Predator Vision.esp Vampire_NoSunDamage_Hoods&Helmets.esp Real Feeding V3.esp BFT Ships and Carriages.esp CustomBreezehomeUpgrades.esp quest_nomercy.esp quest_seaofghosts.esp quest_andtherealmsofdaedra.esp quest_thebiggertheyare.esp quest_sorcery.esp dD - Realistic Ragdoll Force - Reduced.esp RaceMenuPlugin.esp RaceMenu.ebsp RaceCompatibilityUSKPOverride.esp CustomRaces.esp SexLabMatchMaker.esp SexLabWerewolves.esp MoreNastyCritters.esp FNIS.esp SexLabNudeCreatures.esp SexLabNudeCreaturesDG.esp SexLabNudeCreaturesDB.esp HentaiCreatures.esp BDVanillaCritters.esp XPMSE.esp SOSRaceMenu.esp Schlongs of Skyrim.esp SOS - VectorPlexus Muscular Addon.esp SOS - VectorPlexus Regular Addon.esp SOS - B3lisario UNP Addon.esp SLAnimLoader.esp SexLabDefeat.esp Because this mod doesnot support futas? I'm having trouble getting this to work with werewolves. Specifically futa werewolves created using SOS UNP and Sexlab Werewolves. Regular male werewolves work fine, but neither inflation nor pregnancy work with futa werewolves. Here's my load order if it helps. Skyrim.esm Update.esm Unofficial Skyrim Patch.esp Dawnguard.esm Unofficial Dawnguard Patch.esp Dragonborn.esm Unofficial Dragonborn Patch.esp HearthFires.esm Unofficial Hearthfire Patch.esp Skyrim Project Optimization - Full Version.esm ClimatesOfTamriel.esm RaceCompatibility.esm SexLab.esm CreatureFramework.esm SexLabAroused.esm Schlongs of Skyrim - Core.esm HentaiPregnancy.esm HighResTexturePack01.esp HighResTexturePack02.esp HighResTexturePack03.esp Unofficial High Resolution Patch.esp SkyUI.esp Brawl Bugs CE.esp Nicer-Looking Khajiit.esp EveryVampireEyesGrow.esp Alternate Start - Live Another Life.esp Starting Spell Choice.esp Patch - Starting Spell Choice - Live Another Life.esp ClimatesOfTamriel-Dungeons-Hazardous.esp ClimatesOfTamriel-Interiors-Cold.esp ClimatesOfTamriel-Dawnguard-Patch.esp ClimatesOfTamriel-Dragonborn-Patch.esp Remove Interior Fog V2 - Full Version.esp Character Creation Overhaul.esp CCO - Dynamic Skill Progression.esp CCO - Diverse Races And Genders.esp AmazingFollowerTweaks.esp ToL_Core_by_Brevi.esp ToL_SKSE_by_Brevi.esp Werewolves.esp HPSoulGemBirth.esp BVFE_Serana.esp Vampire Lord Serana Fixed.esp Door_To_Valerica's_Study.esp Auto Unequip Ammo.esp Auto Unequip Helmet.esp Predator Vision.esp Vampire_NoSunDamage_Hoods&Helmets.esp Real Feeding V3.esp BFT Ships and Carriages.esp CustomBreezehomeUpgrades.esp quest_nomercy.esp quest_seaofghosts.esp quest_andtherealmsofdaedra.esp quest_thebiggertheyare.esp quest_sorcery.esp dD - Realistic Ragdoll Force - Reduced.esp RaceMenuPlugin.esp RaceMenu.esp RaceCompatibilityUSKPOverride.esp CustomRaces.esp SexLabMatchMaker.esp SexLabWerewolves.esp MoreNastyCritters.esp FNIS.esp SexLabNudeCreatures.esp SexLabNudeCreaturesDG.esp SexLabNudeCreaturesDB.esp HentaiCreatures.esp BDVanillaCritters.esp XPMSE.esp SOSRaceMenu.esp Schlongs of Skyrim.esp SOS - VectorPlexus Muscular Addon.esp SOS - VectorPlexus Regular Addon.esp SOS - B3lisario UNP Addon.esp SLAnimLoader.esp SexLabDefeat.esp Because this mods doesnot support futas?
atlas117 Posted January 8, 2017 Posted January 8, 2017 I'm having trouble getting this to work with werewolves. Specifically futa werewolves created using SOS UNP and Sexlab Werewolves. Regular male werewolves work fine, but neither inflation nor pregnancy work with futa werewolves. Here's my load order if it helps. Skyrim.esm Update.esm Unofficial Skyrim Patch.esp Dawnguard.esm Unofficial Dawnguard Patch.esp Dragonborn.esm Unofficial Dragonborn Patch.esp HearthFires.esm Unofficial Hearthfire Patch.esp Skyrim Project Optimization - Full Version.esm ClimatesOfTamriel.esm RaceCompatibility.esm SexLab.esm CreatureFramework.esm SexLabAroused.esm Schlongs of Skyrim - Core.esm HentaiPregnancy.esm HighResTexturePack01.esp HighResTexturePack02.esp HighResTexturePack03.esp Unofficial High Resolution Patch.esp SkyUI.esp Brawl Bugs CE.esp Nicer-Looking Khajiit.esp EveryVampireEyesGrow.esp Alternate Start - Live Another Life.esp Starting Spell Choice.esp Patch - Starting Spell Choice - Live Another Life.esp ClimatesOfTamriel-Dungeons-Hazardous.esp ClimatesOfTamriel-Interiors-Cold.esp ClimatesOfTamriel-Dawnguard-Patch.esp ClimatesOfTamriel-Dragonborn-Patch.esp Remove Interior Fog V2 - Full Version.esp Character Creation Overhaul.esp CCO - Dynamic Skill Progression.esp CCO - Diverse Races And Genders.esp AmazingFollowerTweaks.esp ToL_Core_by_Brevi.esp ToL_SKSE_by_Brevi.esp Werewolves.esp HPSoulGemBirth.esp BVFE_Serana.esp Vampire Lord Serana Fixed.esp Door_To_Valerica's_Study.esp Auto Unequip Ammo.esp Auto Unequip Helmet.esp Predator Vision.esp Vampire_NoSunDamage_Hoods&Helmets.esp Real Feeding V3.esp BFT Ships and Carriages.esp CustomBreezehomeUpgrades.esp quest_nomercy.esp quest_seaofghosts.esp quest_andtherealmsofdaedra.esp quest_thebiggertheyare.esp quest_sorcery.esp dD - Realistic Ragdoll Force - Reduced.esp RaceMenuPlugin.esp RaceMenu.ebsp RaceCompatibilityUSKPOverride.esp CustomRaces.esp SexLabMatchMaker.esp SexLabWerewolves.esp MoreNastyCritters.esp FNIS.esp SexLabNudeCreatures.esp SexLabNudeCreaturesDG.esp SexLabNudeCreaturesDB.esp HentaiCreatures.esp BDVanillaCritters.esp XPMSE.esp SOSRaceMenu.esp Schlongs of Skyrim.esp SOS - VectorPlexus Muscular Addon.esp SOS - VectorPlexus Regular Addon.esp SOS - B3lisario UNP Addon.esp SLAnimLoader.esp SexLabDefeat.esp Because this mod doesnot support futas? I'm having trouble getting this to work with werewolves. Specifically futa werewolves created using SOS UNP and Sexlab Werewolves. Regular male werewolves work fine, but neither inflation nor pregnancy work with futa werewolves. Here's my load order if it helps. Skyrim.esm Update.esm Unofficial Skyrim Patch.esp Dawnguard.esm Unofficial Dawnguard Patch.esp Dragonborn.esm Unofficial Dragonborn Patch.esp HearthFires.esm Unofficial Hearthfire Patch.esp Skyrim Project Optimization - Full Version.esm ClimatesOfTamriel.esm RaceCompatibility.esm SexLab.esm CreatureFramework.esm SexLabAroused.esm Schlongs of Skyrim - Core.esm HentaiPregnancy.esm HighResTexturePack01.esp HighResTexturePack02.esp HighResTexturePack03.esp Unofficial High Resolution Patch.esp SkyUI.esp Brawl Bugs CE.esp Nicer-Looking Khajiit.esp EveryVampireEyesGrow.esp Alternate Start - Live Another Life.esp Starting Spell Choice.esp Patch - Starting Spell Choice - Live Another Life.esp ClimatesOfTamriel-Dungeons-Hazardous.esp ClimatesOfTamriel-Interiors-Cold.esp ClimatesOfTamriel-Dawnguard-Patch.esp ClimatesOfTamriel-Dragonborn-Patch.esp Remove Interior Fog V2 - Full Version.esp Character Creation Overhaul.esp CCO - Dynamic Skill Progression.esp CCO - Diverse Races And Genders.esp AmazingFollowerTweaks.esp ToL_Core_by_Brevi.esp ToL_SKSE_by_Brevi.esp Werewolves.esp HPSoulGemBirth.esp BVFE_Serana.esp Vampire Lord Serana Fixed.esp Door_To_Valerica's_Study.esp Auto Unequip Ammo.esp Auto Unequip Helmet.esp Predator Vision.esp Vampire_NoSunDamage_Hoods&Helmets.esp Real Feeding V3.esp BFT Ships and Carriages.esp CustomBreezehomeUpgrades.esp quest_nomercy.esp quest_seaofghosts.esp quest_andtherealmsofdaedra.esp quest_thebiggertheyare.esp quest_sorcery.esp dD - Realistic Ragdoll Force - Reduced.esp RaceMenuPlugin.esp RaceMenu.esp RaceCompatibilityUSKPOverride.esp CustomRaces.esp SexLabMatchMaker.esp SexLabWerewolves.esp MoreNastyCritters.esp FNIS.esp SexLabNudeCreatures.esp SexLabNudeCreaturesDG.esp SexLabNudeCreaturesDB.esp HentaiCreatures.esp BDVanillaCritters.esp XPMSE.esp SOSRaceMenu.esp Schlongs of Skyrim.esp SOS - VectorPlexus Muscular Addon.esp SOS - VectorPlexus Regular Addon.esp SOS - B3lisario UNP Addon.esp SLAnimLoader.esp SexLabDefeat.esp Because this mods doesnot support futas? Got it to work, just had to install > http://www.loverslab.com/files/file/715-sexlab-gender-change/
RPGX_Omega Posted January 17, 2017 Posted January 17, 2017 SexLabHentaiPregnancy 1.19h small changes to scaling on qotsafan request for slif Why not been updating main download file with these patches?
ShatteredGlassSmile Posted January 27, 2017 Posted January 27, 2017 Its a nice mod, but Im not happy with the fact I never get my soulgem at birth Yes, I made sure the mod configuration was set properly for it. Also, what could make it better is a longer/more detailed birth animation.
Trevor Philips Posted February 4, 2017 Posted February 4, 2017 Would you mind telling me the names of the idle animations that female NPC's cycle through during pregnancy are? You know, the two or three where they periodically rub their vagina? I want to experiment with making them into my player characters default idle animation. I'm not sure if this is the mod that causes that though, I'm just assuming cause it only seems to happen to pregnant NPC's.
Ed86 Posted February 4, 2017 Posted February 4, 2017 Would you mind telling me the names of the idle animations that female NPC's cycle through during pregnancy are? You know, the two or three where they periodically rub their vagina? I want to experiment with making them into my player characters default idle animation. I'm not sure if this is the mod that causes that though, I'm just assuming cause it only seems to happen to pregnant NPC's. its not this mod, probably sexlab aroused
Ed86 Posted February 5, 2017 Posted February 5, 2017 SexLabHentaiPregnancy 1.19i ported and rewrote HP milk addon character will start producing milk after 0.3 of pregnancy period and get spell for milking, milk production is 1 milk per hour, with Heartfire addon player get another spell to gather milk into Jug of Milk SexLabHentaiPregnancy 1.19i.7z
Ed86 Posted February 11, 2017 Posted February 11, 2017 SexLabHentaiPregnancy 1.19j Support for SL Separate Orgasms SexLabHentaiPregnancy 1.19j.7z
Guest Posted February 20, 2017 Posted February 20, 2017 I'm having a weird issue, I can't get the belly to scale with either the inflation or being pregnant. When I use just the original mod, the 1.19 version from the front page, everything works fine. But when I use 1.19g, i, or j, nothing happens. I've tried using the update as both a stand alone and as a patch to the original and I can't get it to work. I have the latest SKSE and NetImmersive Override. I am allowing NiO to overwrite Racemenu's scripts, not sure if that matters or not. I've also tried reinstalling all these mods and make a new game. Not sure what I'm doing wrong, any ideas?
Ed86 Posted March 9, 2017 Posted March 9, 2017 I'm having a weird issue, I can't get the belly to scale with either the inflation or being pregnant. When I use just the original mod, the 1.19 version from the front page, everything works fine. But when I use 1.19g, i, or j, nothing happens. I've tried using the update as both a stand alone and as a patch to the original and I can't get it to work. I have the latest SKSE and NetImmersive Override. I am allowing NiO to overwrite Racemenu's scripts, not sure if that matters or not. I've also tried reinstalling all these mods and make a new game. Not sure what I'm doing wrong, any ideas? just tried, everything works fine Installed SLIF don't solve a problem too. install custom body/ skeleton/ build clothes in bodyslide with preset that support pregnancy belly
qotsafan Posted March 9, 2017 Posted March 9, 2017 I'm having a weird issue, I can't get the belly to scale with either the inflation or being pregnant. When I use just the original mod, the 1.19 version from the front page, everything works fine. But when I use 1.19g, i, or j, nothing happens. I've tried using the update as both a stand alone and as a patch to the original and I can't get it to work. I have the latest SKSE and NetImmersive Override. I am allowing NiO to overwrite Racemenu's scripts, not sure if that matters or not. I've also tried reinstalling all these mods and make a new game. Not sure what I'm doing wrong, any ideas? just tried, everything works fine Installed SLIF don't solve a problem too. install custom body/ skeleton/ build clothes in bodyslide with preset that support pregnancy belly It doesn't seem to be a skeleton issue. I made a small test, to see, what is wrong. Everything seems to work fine yes, except for the rate at which the belly and breast increases, which seems to be very low, almost unnoticeable. SexLab Hentai Pregnancy settings were all default. Each section I have waited for 24 hours. (apparently wait time is not calculated?) [03/07/2017 - 06:09:35PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBreastSize: 1.000000 TargetBreastSize: 2.000000 IncrBreastRate: 0.011905 BreastScaling: TRUE [03/07/2017 - 06:09:35PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBellySize: 1.000000 TargetBellySize: 5.000000 IncrBellyRate: 0.047619 BellyScaling: TRUE [03/07/2017 - 06:10:54PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBreastSize: 1.011905 TargetBreastSize: 2.000000 IncrBreastRate: 0.011905 BreastScaling: TRUE [03/07/2017 - 06:10:54PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBellySize: 1.047619 TargetBellySize: 5.000000 IncrBellyRate: 0.047619 BellyScaling: TRUE [03/07/2017 - 06:11:54PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBreastSize: 1.023809 TargetBreastSize: 2.000000 IncrBreastRate: 0.011905 BreastScaling: TRUE [03/07/2017 - 06:11:54PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBellySize: 1.095238 TargetBellySize: 5.000000 IncrBellyRate: 0.047619 BellyScaling: TRUE [03/07/2017 - 06:13:06PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBreastSize: 1.035714 TargetBreastSize: 2.000000 IncrBreastRate: 0.011905 BreastScaling: TRUE [03/07/2017 - 06:13:06PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBellySize: 1.142857 TargetBellySize: 5.000000 IncrBellyRate: 0.047619 BellyScaling: TRUE [03/07/2017 - 06:14:28PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBreastSize: 1.047619 TargetBreastSize: 2.000000 IncrBreastRate: 0.011905 BreastScaling: TRUE [03/07/2017 - 06:14:28PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBellySize: 1.190476 TargetBellySize: 5.000000 IncrBellyRate: 0.047619 BellyScaling: TRUE [03/07/2017 - 06:15:27PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBreastSize: 1.059524 TargetBreastSize: 2.000000 IncrBreastRate: 0.011905 BreastScaling: TRUE [03/07/2017 - 06:15:27PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBellySize: 1.238096 TargetBellySize: 5.000000 IncrBellyRate: 0.047619 BellyScaling: TRUE [03/07/2017 - 06:16:42PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBreastSize: 1.071428 TargetBreastSize: 2.000000 IncrBreastRate: 0.011905 BreastScaling: TRUE [03/07/2017 - 06:16:42PM] Hentai Pregnancy: [Actor < (00000014)>] CurrentBellySize: 1.285715 TargetBellySize: 5.000000 IncrBellyRate: 0.047619 BellyScaling: TRUE 0.011905 for the breasts for 24 hours and 0.047619 for the belly for 24 hours is not a lot. Edit: As someone just posted in my thread, so the values are increased every 10 seconds? That still doesn't cover wait/sleep/etc., but I guess I understand now, how it works.
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