Jump to content

Children + Soul Gems (Hentrai Pregnancy Addon)


Recommended Posts

Posted

Between 'SexLabHentaiPregnancy changes for SexLab 1.5' and 'SexLabHentaiPregnancy changes plus', which one should I install on top of the other ?

 

And about 'Children+SoulGems 1.5' and 'Children+SoulGemsDragonborn 1.5'... Do I install the first one, and THEN put the 'Dragonborn' on top of it ? ...then I put the other 2 'changes' on top of them ?

 

That's really, REALLY not clear... and the number of possible downloads is slightly frightening, when you look at it for the first time.

I looked around, and even then I'm not exactly confident in what to pick on TOP of what... The order isn't properly *worded* is what I'm saying.

Posted

I did my install a long time time ago, but I think this is the order I did mine:

 

Children+soulgems 1.5

Children+soulgems Dragonborn

SexLabHentaiPregnancy changes for SexLab 1.5

SexLabHentaiPregnancy changes plus

 

From what little testing I have done, this appears to work with the latest version of SL (1.60HF2)

  • 4 months later...
Posted

For anyone still using this and wondering why children take too long to grow in size:
 
The script uses 

RegisterForSingleUpdateGameTime(3.0)

 to update children size, which is supposed to update their size at every 3 hours. However, as stated in here...
 

OnUpdateGameTime may come in much later then you expect if the player is sleeping, waiting, fast traveling, or serving jail time. The event will only be sent once, after the sleep/wait/travel/serve period is over, so you should be prepared to handle hours passing between updates.

 
and here...
 

Registering for game time updates is only possible after the player has received full player controls.

 
the game won't call this event while you wait/sleep. In other words, you may wait/sleep a whole year, but the mod's script will only apply 3 hours of growth. So you basically have to wait for a fixed amount of events, no matter how you might have set the growth days setting on the MCM.
 
I've made a small modification to the script to fix this. I basically keep track of the time passed since the previous size update and calculate how many updates need to be applied based on that. Let me know if you're interested.
 
If you want to do it yourself here's what you need to do:

  • In HPSoulGemBirthActor.psc add a new property:
    ; How many days have passed since the last growth update
    float Property fPreviousUpdateTime Auto
    
  • Modify the StartGrowth() function like below:
    Function StartGrowth()
    
    	self.SetScale(0.7)
    	fPreviousUpdateTime = Utility.GetCurrentGameTime()
    	RegisterForSingleUpdateGameTime(3.0)
    
    EndFunction
    
  • Modify the UpdateGrowth() function like below:
    float CurrentScale  = Self.GetScale() / Self.GetBaseScale()
    
    If ( CurrentScale >= 1.0 )
    
      Self.SetScale ( 1.0 )
      birthQuest.EndGrowth( self as Actor, childIndex )
      return
     
    Else
     
      ; Find out how many growth updates are required
      int iRequiredGrowthUpdates = Math.Floor( 8 * (Utility.GetCurrentGameTime() - fPreviousUpdateTime) )
     
      CurrentScale += iRequiredGrowthUpdates * ( (0.3 / ((config.GrowthDuration as float) * 24.0)) * 3.0 )
     
      fPreviousUpdateTime = Utility.GetCurrentGameTime()
      RegisterForSingleUpdateGameTime(3.0)
    
      Self.SetScale ( CurrentScale )
    
    EndIf
    

 

 

There's also a similar problem where skill updates for apprenticeship take longer than the MCM setting, but it looks like those updates are done by package scripts and there's no easy way to fix that, other than redesigning the entire thing. Now that method may look reasonable at first, but relying on AI packages to execute these scripts isn't really a very good idea IMO. Not the most reliable method to say the least. If something prevents the NPC from running one of these AI packages, their scripts will not run either. I'm not even sure if the game actually runs these packages when the player isn't around.

  • 1 month later...
Posted

Is this mod still being worked on or what? It really had a lot of potential, right now the only glaring problem is that if a pregnant npc dies, she just gives birth instantly, is there any way to fix that? Maybe auto clear pregnancy when the npc dies?

 

Also just out of curiosity I wanted to see whether or not necroing a npc corpse would get it pregnant.... The answer is yes.

  • 3 weeks later...
Posted

Question: Is there a way to make this work with AFT to make a child follower? I tried using the spell that make any NPC a follower on my character's kid but I don't get the AFT dialog options.

  • 1 month later...
Posted

Don't know if this has been posted somewhere on here prior to this. this add on was working great until yesterday. now, first it was one extra menu in mcm, now it went up to 4 menus for this in mcm. it is acting like a trojan horse. keeps multiplying itself. What could it be?

  • 5 weeks later...
Posted

I love this mod, it does the children feature so much better than the other pregnancy mods. now if only there was a way for the children after a certain amount of time to be replaced with an adult version, same skin color, same eye color (inherited from parents), random hairstyle and living in a location appropriate to whatever trade they apprenticed in (ie-bard ending up in the bard's college) etc. that would make my day. that and the option to toggle on/off pregnancies by animals.

  • 1 month later...
Posted

Guys I need help, this mod corrupts my savegame everytime a child is born. It all works perfect otherwise but if I try to load my save after the birth of a child I get CTD on load... I tried it with the other old hentai pregnancy children plugin and didn'tn run into this problem, but that plugin is inferior to this one.

  • 3 months later...
Posted

Not sure what I did wrong here, but after getting pregnant and waiting out the pregnancy time, my pc went through the 'birthing' animation (fall down, kneeling animation thing).  I got the message that she was no longer pregnant, but haven't found a child or soul gem from the pregnancy.  Am I missing a setting somewhere that lets you get pregnant, but then nothing come out of it?  

Posted

Not sure what I did wrong here, but after getting pregnant and waiting out the pregnancy time, my pc went through the 'birthing' animation (fall down, kneeling animation thing).  I got the message that she was no longer pregnant, but haven't found a child or soul gem from the pregnancy.  Am I missing a setting somewhere that lets you get pregnant, but then nothing come out of it?  

 

There is a setting for the chance to produce a child in the mcm, if it's set to anything but 100 percent there is a chance no child will be born. you will also get that animation if  you have cum inflation on  in which case they were never actually pregnant. they are both under the mcm for 'hentai preganancy' rather than under children & soulgems.

Posted

Please can you add support for "Dolls" mod they are so pretty!

If you want support for a mod, it will really help your case if you put a link to that mod in your request instead of just a name because frankly putting "skyrim dolls mod" into any search engine is going to give one hell of a long list of pages that may not come anywhere close to the mod you wanted to reference on the first page of results and frankly if they have to go to the second page, they won't.

Posted

 

Not sure what I did wrong here, but after getting pregnant and waiting out the pregnancy time, my pc went through the 'birthing' animation (fall down, kneeling animation thing).  I got the message that she was no longer pregnant, but haven't found a child or soul gem from the pregnancy.  Am I missing a setting somewhere that lets you get pregnant, but then nothing come out of it?  

 

There is a setting for the chance to produce a child in the mcm, if it's set to anything but 100 percent there is a chance no child will be born. you will also get that animation if  you have cum inflation on  in which case they were never actually pregnant. they are both under the mcm for 'hentai preganancy' rather than under children & soulgems.

 

Thanks!  That is exactly what I was missing.  

Posted

 

Please can you add support for "Dolls" mod they are so pretty!

If you want support for a mod, it will really help your case if you put a link to that mod in your request instead of just a name because frankly putting "skyrim dolls mod" into any search engine is going to give one hell of a long list of pages that may not come anywhere close to the mod you wanted to reference on the first page of results and frankly if they have to go to the second page, they won't.

 

 

A, this is the link http://www.nexusmods.com/skyrim/mods/72569/? for Dolls. 

  • 1 month later...
Posted

I figured out why you can't get unique names for the children in this mod.

 

The problem is because the records for the children it uses don't have the "IsUnique" flag so it always gets their name from the ActorBase instead of the LeveledActorBase.

 

You can fix this in your own copies by editing the mod in TESVEDIT and setting the IsUnique flag PLUS editing the scripts where the author used GetActorBase to use GetLeveledActorBase, recompile those scripts of course.

 

I would upload my copy but I have a number of other personal customizations and I'm a long way from being done since I intend to merge it with the pregnancy mod.

 

I tried BeeingFemale but it is way too complex and script heavy and also causes regular stack dumps (a very bad thing which can screw up unrelated mods). This mod has it's issues but I see them as fixable.

 

Edit: I should also mention that if you update the mod you'll need to start a new game if any children have already been born since the wrong version of the record (sans the unique flag) will still remain non-unique and thus use the default name.

  • 2 weeks later...
Posted

Works well, great work, well done. been looking for a good mod like this as others lacked or had too much silly options like sperm count and such.

 

I do get NPCs getting other NPCs pregnant thou, an option so just the player got them pregnant would be nice

Posted

Works well, great work, well done. been looking for a good mod like this as others lacked or had too much silly options like sperm count and such.

 

I do get NPCs getting other NPCs pregnant thou, an option so just the player got them pregnant would be nice

This option in Hentai Preg. MCM menu you can choose if only PC can get pregnant or only NPC and other options.

Posted

 

Works well, great work, well done. been looking for a good mod like this as others lacked or had too much silly options like sperm count and such.

 

I do get NPCs getting other NPCs pregnant thou, an option so just the player got them pregnant would be nice

This option in Hentai Preg. MCM menu you can choose if only PC can get pregnant or only NPC and other options.

 

 

I have that set but my followers are able to get NPCs pregnant still

 

 

edit: just have to clear the pregnancies i suppose.

Is there any console command to get them back to their original belly scale? i tried setnpcweight but didnt help

  • 2 months later...
Posted

I would upload my copy but I have a number of other personal customizations and I'm a long way from being done since I intend to merge it with the pregnancy mod.

 

How's it going with that? Considering that there has been no work on this mod since 2014 and it is still, by far, the best children birthing mod around, a "C+SG extension by WaxenFigure" would certainly be well received.

Posted

 

I would upload my copy but I have a number of other personal customizations and I'm a long way from being done since I intend to merge it with the pregnancy mod.

How's it going with that? Considering that there has been no work on this mod since 2014 and it is still, by far, the best children birthing mod around, a "C+SG extension by WaxenFigure" would certainly be well received.

 

Dead, I tried a few things that appeared to work and then suddenly didn't. The realization is that for actors not marked unique there is no LeveledActorBase, the game uses the actual actorbase record. The only solution is to create unique actors for every potential pregnancy and I didn't care to go to all that work.

  • 3 months later...
  • 2 weeks later...
Posted

 

 

I would upload my copy but I have a number of other personal customizations and I'm a long way from being done since I intend to merge it with the pregnancy mod.

How's it going with that? Considering that there has been no work on this mod since 2014 and it is still, by far, the best children birthing mod around, a "C+SG extension by WaxenFigure" would certainly be well received.

 

Dead, I tried a few things that appeared to work and then suddenly didn't. The realization is that for actors not marked unique there is no LeveledActorBase, the game uses the actual actorbase record. The only solution is to create unique actors for every potential pregnancy and I didn't care to go to all that work.

 

 

Yeah, for this to work you would have to make a mod like the old hiyokogenerator mod for oblivion. But since making npc's in skyrim is so much more complicated, there are gonna be a lot of issues if you want to make something like this for skyrim. It's really sad tbh. With all those pregnancy mods the closest thing to getting something from a pregnancy is soul gems...

 

But i really get why nobody is really doing this atm. It's a miracle that somebody made to make something like this for oblivion already. I guess if i want videogame kids, i play oblivion i guess...

  • 6 months later...

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