dongding Posted October 2, 2024 Posted October 2, 2024 (edited) Just curious. What exactly does the <Unknown: 2> and <Unknown: 1> flags do which you attached to many scripts in the newer versions of Pregnancy? Edited October 2, 2024 by dongding
Neutron_rus Posted October 2, 2024 Posted October 2, 2024 3 hours ago, dongding said: Just curious. What exactly does the <Unknown: 2> and <Unknown: 1> flags do which you attached to many scripts in the newer versions of Pregnancy? Flags? There's only 1 available flag on scripts (enable or not). Or if you mean flags in variables, then you're just using old fnvedit that can't properly recognize new way of how xnvse setting up variables, just update fnvedit to 4.1.5f from nexus
dongding Posted October 6, 2024 Posted October 6, 2024 On 10/2/2024 at 9:58 AM, Neutron_rus said: Flags? There's only 1 available flag on scripts (enable or not). Or if you mean flags in variables, then you're just using old fnvedit that can't properly recognize new way of how xnvse setting up variables, just update fnvedit to 4.1.5f from nexus Yeah, that was it. I am still using an older version of FNVEdit that isn't infested with popups, so that's the reason indeed. Also, on a side note, what exactly did became faulty with CommonRessources and Pregnancy as newer versions of xNVSE rolled out? I sadly did a mistake by heavily editing CommonRessources back then, and upgrading now to a newer version would be a pain in the ass to modify again.
Neutron_rus Posted October 6, 2024 Posted October 6, 2024 5 hours ago, dongding said: Yeah, that was it. I am still using an older version of FNVEdit that isn't infested with popups, so that's the reason indeed. Also, on a side note, what exactly did became faulty with CommonRessources and Pregnancy as newer versions of xNVSE rolled out? I sadly did a mistake by heavily editing CommonRessources back then, and upgrading now to a newer version would be a pain in the ass to modify again. Yes, pop ups is a bit annoying, and in either case only whole script matter, changing single variables won't do much. Compare code with fnvedit, then edit in geck, though code is only part of what was changed, you need to look also at lists and new available bodies. Nothing much got broken overall, just doing preparations for big update of Maternity Pack Overkill, as changes in that mod is requiring use of xnvse, I was delaying switching over some time, but now when new modders is ok with using xnvse, I decided to rewrite SOPreg/Offsprings/SCR/Drugging mods with extensive use of xnvse as well 1
lendiforma Posted October 14, 2024 Posted October 14, 2024 (edited) Hello everyone, I've got a bit of a problem with making an npc from a mod work with pregnancy, specifically Jade from Fertile Breeder I can't make fertility kick in on her, I tried a bunch of things, namely: -setting fertility to 4(All), doesn't help -Adding her refID to SexoutSLActorDataPossibleCompanions in SCR through geck -Adding her race to Spunk's SpunkFlRaceCauc list through geck -adding those things through a script ingame ListAddForm SpunkFlRaceCauc JadeRace ListAddForm SexoutSLActorDataPossibleCompanions FBJadeREF -setting her race to default caucasian -adding a fertility token manually all of those things i did with resetting the pregnancy The only thing I get in debug about her is "Preg5BodyCalc Jade: Dead/Invalid Actor 1" and etc etc, removes everything from her I don't know what else I can try, basically what I'm trying to do is add fertility to her without starting a new game, cause it's possible that some of these things could work on a new game I guess Is there anything else I could try? Edited October 14, 2024 by lendiforma
Neutron_rus Posted October 15, 2024 Posted October 15, 2024 3 hours ago, lendiforma said: I can't make fertility kick in on her, I tried a bunch of things, namely: -setting fertility to 4(All), doesn't help -Adding her refID to SexoutSLActorDataPossibleCompanions in SCR through geck -Adding her race to Spunk's SpunkFlRaceCauc list through geck -adding those things through a script ingame ListAddForm SpunkFlRaceCauc JadeRace ListAddForm SexoutSLActorDataPossibleCompanions FBJadeREF -setting her race to default caucasian -adding a fertility token manually First and last thing should be enough 3 hours ago, lendiforma said: Is there anything else I could try? If I remember correctly FB likes to handle pregnancy manually (just swapping outfits overtime, instead of real cycle), so you can try checking sterile/infertile/nevergetpregnant or any other lists that stops all fertility/pregnancy on character (probably it's added from script function at runtime to not mess up any lists) 4 hours ago, lendiforma said: The only thing I get in debug about her is "Preg5BodyCalc Jade: Dead/Invalid Actor 1" and etc etc, removes everything from her if rActor.GetDead || rActor.IsActor != 1 || (NX_IsInList SexoutSLActorDataNeverGetsPregnant rActor) || (SexoutP0QVAR.iFertEnableFemale < 1) DebugPrint "Preg5BodyCalc %n: Dead/Invalid Actor" rActor Check what matches and you'll find what's wrong 1
lendiforma Posted October 15, 2024 Posted October 15, 2024 1 hour ago, Neutron_rus said: SexoutSLActorDataNeverGetsPregnant Yep, that was it, there's a whole bunch of npc from FB in there actually, makes sense I guess She's added to that list waaay back in the FBJadeStartupQuestScript Seems to be a one time thing, so I just did RemoveFormFromFormList SexoutSLActorDataNeverGetsPregnant FBJJade, added a token and she started working Wouldn't even thought of that, thanks a lot
lendiforma Posted October 15, 2024 Posted October 15, 2024 (edited) Sorry to be a bother @Neutron_rus, was wondering if you could weigh in on another problem I have with either Pregnancy or Spunk, not exactly sure which is it Maybe I'm just not seeing something obvious I seem to be having a long standing problem in my playthroughs, at some point pregnancies suddenly stop working while everything seems to be fine on the surface For example, I recently tried to impregnate PC and abovementioned Jade with a Fire Ant from TTW, and it just doesn't work on either All I see in debug for both is that ova is running fine etc etc, sometimes there's something like this: Preg2UDFOva Morrigan: zOvaToken Cauc MayGetPregIf Rnd(0.00000) < 301.00 x 0.001802 (SChance x Sperm),BabyCntAdj=0.000 I check cum data in Spunk, it's registered to FireAnt as it should, Fire Ant itself is present sexout ant list Everything set to max out chances, tried skipping steps in Spunk, tried instant pregnancy tick Basically it just sits there doing nothing at all I already had working pregnancies on the save, so it should work Really, it's gotten so bad that I went around and made a mod to add gestating tokens through dialogues and items so i could finally play the game Maybe you have any ideas how to troubleshoot this? Or maybe I'm not seeing something P.S. Also, what's FertMod and why is it negative? Spoiler Edited October 15, 2024 by lendiforma spoiler
Neutron_rus Posted October 16, 2024 Posted October 16, 2024 12 hours ago, lendiforma said: Preg2UDFOva Morrigan: zOvaToken Cauc MayGetPregIf Rnd(0.00000) < 301.00 x 0.001802 (SChance x Sperm),BabyCntAdj=0.000 it means you have instant pregnancy enabled, if left wing value is lower than the right one, it will trigger pregnancy. Make sure that non-human pregnancy is enabled and that you have an ova that can be impregnated. You can also change pregnancy update frequency to lower values, maybe it will help to kick it in. Also note that Crash Logger mod may break some of pregnancy code, if you have it. (I don't know why Crash Logger doing it, but I noticed this in my test sessions) 12 hours ago, lendiforma said: P.S. Also, what's FertMod and why is it negative? (Fertility Drugs level * 0.5) - (Radiation * 0.05) + (Semen Total * 0.01), have hard caps at -100 and 100, affects char's fertility generation If you have Sexout Drugging mod, it'll change how some drugs/alcohol is working, affecting fertility/pregnancy
Zaraia0 Posted October 29, 2024 Posted October 29, 2024 On 9/27/2024 at 10:44 PM, Neutron_rus said: To prevent some crashes you can also try installing NVAC. About this I want to say I think NVAC might have messed up my saves. After adding it and playing for a long while I started getting stuttering and extreme lag in the pip-boy, dialogue, and game menu. The only mods I added recently were NVAC and SexAssault, but disabling either of them doesn't fix it, while loading earlier saves works fine, so it looks like my later saves are just permanently messed up. After researching I found that NVAC can apparently cause save corruption because it forces the game to go on when it should have crashed "for good reason", not that I know anything about how this works.
Neutron_rus Posted October 30, 2024 Posted October 30, 2024 14 hours ago, Zaraia0 said: About this I want to say I think NVAC might have messed up my saves. After adding it and playing for a long while I started getting stuttering and extreme lag in the pip-boy, dialogue, and game menu. The only mods I added recently were NVAC and SexAssault, but disabling either of them doesn't fix it, while loading earlier saves works fine, so it looks like my later saves are just permanently messed up. After researching I found that NVAC can apparently cause save corruption because it forces the game to go on when it should have crashed "for good reason", not that I know anything about how this works. I know that NVAC may conflict with some modern plugins like NVR and Crash Logger, but overall it was always fine for me. Most sexout mods are just too old and require NVAC to get some stability. As for broken save file, you can try this https://www.nexusmods.com/newvegas/mods/80666 https://www.nexusmods.com/newvegas/mods/80993
ZephyrShadow99 Posted December 12, 2024 Posted December 12, 2024 im not sure what to do ive been getting back into modding NV and im running into an issue where just having the pregancyv3 mod makes my characters naked body go invisible after wearing any clplugins.txtothinloadorder.txtgmodlist.txt or armor once there unequiped
Neutron_rus Posted December 13, 2024 Posted December 13, 2024 45 minutes ago, ZephyrShadow99 said: im not sure what to do ive been getting back into modding NV and im running into an issue where just having the pregancyv3 mod makes my characters naked body go invisible after wearing any clplugins.txtothinloadorder.txtgmodlist.txt or armor once there unequiped Pregnancy depends on full installation of Sexout Common Resources, otherwise you will have this problem with meshes. As a simple solution you can look at this all in one package.
Sauerclout Posted January 10, 2025 Posted January 10, 2025 I need clarification on the pregnancy models. It says it supports BnB and T3M does this mean if I use T6M or T4. I didn't care for BnB's strange proportions and couldn't get T3M work so I'd rather use another body mod.
Neutron_rus Posted January 10, 2025 Posted January 10, 2025 47 minutes ago, Sauerclout said: I need clarification on the pregnancy models. It says it supports BnB and T3M does this mean if I use T6M or T4. I didn't care for BnB's strange proportions and couldn't get T3M work so I'd rather use another body mod. T3 Cali is the main body (any t3 body from nexus is fine), but you can use any body you want (t6, t4 is fine, just not cbbe), just expect that pregnant models will use t3 body instead of yours (as it's built-in in the pregnant outfit models) And If you have problem with invisible outfits, then you forgot to install SCR correctly, simplest way to do so is here
Sauerclout Posted January 10, 2025 Posted January 10, 2025 (edited) Okay, I've just been confused coming from newer creation engine games where CBBE reigns supreme with maybe one or two niche alternatives. When you say Type 3 Cali, when I search that up the first thing that comes up is a CBBE preset for new vegas. So I'm not sure how to get that unless it's hosted somewhere different on this site. Part of that confusion is that a lot of these "body replacers" are called "outfits mods", for example I downloaded what I've been told is the Type 3M body mod but it only effects the armors and doesn't remain when it's removed, instead showing just the vanilla underwear model. I just downloaded Framework assortment but I swear it says it uses T6 instead so I honestly just don't know Edit: I am dumb. Everything is work. Idk Edited January 10, 2025 by Sauerclout I am stupid
Neutron_rus Posted January 10, 2025 Posted January 10, 2025 (edited) 3 hours ago, Sauerclout said: When you say Type 3 Cali, when I search that up the first thing that comes up is a CBBE preset for new vegas. So I'm not sure how to get that unless it's hosted somewhere different on this site. https://www.nexusmods.com/newvegas/mods/54438 https://www.nexusmods.com/newvegas/mods/44312 You can change body in MCM of Sexout Common Resources, outfit replacers are mostly required for non-pregnant armors, as bodies themselves are bundled in Edited January 10, 2025 by Neutron_rus
obamaium Posted January 12, 2025 Posted January 12, 2025 Ive managed to get the nude bodies to work for sex before pregnancy, but after the bodies turn invisible. Im using type 3 bodies. Any obvious ideas? Ive reinstalled everything and done a clean install for this
Neutron_rus Posted January 12, 2025 Posted January 12, 2025 44 minutes ago, obamaium said: Ive managed to get the nude bodies to work for sex before pregnancy, but after the bodies turn invisible. Im using type 3 bodies. Any obvious ideas? Ive reinstalled everything and done a clean install for this You missed steps in installing SCR Easy all in one install
lynxr Posted January 13, 2025 Posted January 13, 2025 FNV/sexout is still able to surprise me. I was playing with a female courier, who was soliciting in a Gomorrah gangbang party. She got pregnant, and the test said the father is a caucasian male. Ok, let's see how it goes, I thought. Second pregnancy during my years playing FNV. (Years ago I was playing with a male courier in a relationship with Willow, who then gave birth during a battle with AWOP robot turrets...). This time the pregnancy got weird, I thought. The belly got big real quick, and then went to P4, then P5, eventually to P7. There was a super mutant at the Gomorrah party. Maybe the pregnancy test is wrong. I was sure the baby was fathered by the super mutant. I was thinking about abortion. Then decided, that OK, let's see what it's like birthing and rearing a super mutant. When the water broke I was just waiting for the birth giving at the Strip's vault. Out comes a Caucasian baby, but the birth giving animation does not stop. Another baby comes out. Then another. And then the animation stops. My courier had triplets, probably with different caucasian fathers from the Gomorroh gangbang party. That gave me a chuckle. I was totally surprised. Maybe the FertEx, I had fed my courier had a part in the success. Now I left Leon from NCRCF as a child rearer in the Lucky 38, and will probably try to avoid pregnancies, since nobody has modded OWB's Stealth Suit II to expand further than P3. Thank you for the Sexout/Sexout Spunk/Sexout pregnancy/Sexout Solicitation modders, if you still read these forums now and then. This was a fun ride for me 😆
Neutron_rus Posted January 13, 2025 Posted January 13, 2025 (edited) 2 hours ago, lynxr said: Out comes a Caucasian baby, but the birth giving animation does not stop. Another baby comes out. Then another. And then the animation stops. Sounds like very old version of SOPreg, as infinite birthing and birthing process that not supports multiple types of babies at once was fixed ages ago. 2 hours ago, lynxr said: My courier had triplets, probably with different caucasian fathers from the Gomorroh gangbang party. That gave me a chuckle. I was totally surprised. Maybe the FertEx, Most likely related to same old version or you have set very high/instant chance of pregnancy that may cause triplets all the time. 2 hours ago, lynxr said: This time the pregnancy got weird, I thought. The belly got big real quick, and then went to P4, then P5, eventually to P7. There was a super mutant at the Gomorrah party. I'm sure it's Cumbloat feature, as mutants and some other creatures have a lot of that, and it may make your belly to be big, but not actually pregnant with anything Edited January 13, 2025 by Neutron_rus
judge214 Posted January 27, 2025 Posted January 27, 2025 Im having an issue where the game is crashing on birth. I am using Fertile Breeder. Currently pregnant with a bighorner and it crashes everytime the animation initializes. Straight CTD.
Neutron_rus Posted January 27, 2025 Posted January 27, 2025 1 hour ago, judge214 said: Im having an issue where the game is crashing on birth. I am using Fertile Breeder. Currently pregnant with a bighorner and it crashes everytime the animation initializes. Straight CTD. Try installing NVAC, (and remove crash logger if you had it installed)
judge214 Posted February 1, 2025 Posted February 1, 2025 On 1/26/2025 at 9:25 PM, Neutron_rus said: Try installing NVAC, (and remove crash logger if you had it installed) Thanks, I also having an issue with companion pregnancy in general, where they will go through pregnancy almost instantaneously and dont go into a birth animation. Their belly goes from 0 to 6 or 7 in like 5 seconds and then bam offspring. This happens with human tokens and animal tokens with FB.
Neutron_rus Posted February 2, 2025 Posted February 2, 2025 (edited) 1 hour ago, judge214 said: Thanks, I also having an issue with companion pregnancy in general, where they will go through pregnancy almost instantaneously and dont go into a birth animation. Their belly goes from 0 to 6 or 7 in like 5 seconds and then bam offspring. This happens with human tokens and animal tokens with FB. You can try checking settings in mcm, maybe pregnancy length timers are set to very low amounts. Belly size can go up from very high cum bloat % setting or amount of offsprings the char impregnated with (instant pregnancy setting can cause triplets almost all the time, maxing out the size). Duration of child birth can be partially affected by sexout itself if timer of sexout acts is set to low values, alternatively it can happen if act ends quicker than expected, as there's no point in waiting for nothing to come out (that's a thing only if you have latest versions, older versions had a bug with quick birth that was not generating offsprings, and usually were leading to infinite loop of birthing). As for FB tokens, I can't really say much about them, FB usually fakes pregnancy and doing it's own thing, many of old pregnancy's code that FB was relying on is long gone, so some parts of FB might not work as intended by FB mods. Also as I know, in FB Zeta there's a thing that can cause all npc to be fake pregnant (maybe only in DC part of the game, maybe not). Also, make sure that your time scale is correct, by default it should be 30, but some mods my lower it further. any value above 30 means the game time is going faster than it should, this will affect any time sensitive functions. Edited February 2, 2025 by Neutron_rus
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