Jump to content

Recommended Posts

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

Link to comment

 

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.

Link to comment

 

 

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.

 

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
Link to comment

 

 

 

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.

 

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

Link to comment

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

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

Link to comment

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.

Link to comment

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

 

 

 

Link to comment

 

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?

Link to comment

 

 

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/

Link to comment
  • 2 weeks later...
  • 2 weeks later...

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.

Link to comment

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

Link to comment
  • 2 weeks later...

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?

Link to comment
  • 3 weeks later...

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

Link to comment

 

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.

Link to comment

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

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use