Jump to content

[Mod]Pregmod+SWP Side Effects


Recommended Posts

Posted (edited)

can we get a version with just side effects? i dont like the pregnancy changes

 

edit: nvm, i found the separate .twee files

Edited by Karenb
  • 2 weeks later...
Posted

I like the Nanobots stuff Extra Fertile, Size Queen, Ultra Tight but I just hate the current pregnancy stuff you made. 

Issues:

1. it harder to advance pregnancy from week 8 to week 12. I am forced to wait until week 9, a am then advance to week 11 forced to wait until week 12.

2. after giving birth my character is immediately pregnant again! 

3. the pregnancy cycle barely works right. Player seem to get pregnant when is says it is safe and not when your ovulating or being dangerous.

 

The only reason I would ever try your stuff is to better trigger the HGH - Human Growth Hormone stuff.

Posted

I will not be making a version without pregnancy stuff, ever. The code for the side effects is intertwined with the new pregnancy logic and I have no interest in doing the work of re-separating them.

 

Regarding the pregnancy issues, keep in mind, if you're low intelligence, your character probably won't give you correct info about your fertility, actual conception happens before you get pregnant, and sperm can survive for a few days in the womb.

 

Quote

2. after giving birth my character is immediately pregnant again! 

Can you provide more details? I haven't seen this bug reported before.

Posted
On 2/13/2024 at 11:47 AM, himmlisches said:

I will not be making a version without pregnancy stuff, ever. The code for the side effects is intertwined with the new pregnancy logic and I have no interest in doing the work of re-separating them.

 

Regarding the pregnancy issues, keep in mind, if you're low intelligence, your character probably won't give you correct info about your fertility, actual conception happens before you get pregnant, and sperm can survive for a few days in the womb.

 

Can you provide more details? I haven't seen this bug reported before.

Can confirm the issue of becoming immediately pregnant after giving birth. Basically what'll happen is that you'll give birth but then around 3-4 days later, despite not having any sex at all, your character will just suddenly become 4 weeks pregnant. This causes an endless pregnancy loop.

 

I also got the broodmother trait when giving birth for the first time.

Posted (edited)

Can also confirm suffered the same thing.

 

Maybe need to set $playerovulating, $zygotewaiting and $implantationtimer to false straight after the birth, and also remove all sperm present in womb at that time as well. Maybe also reset $placeincycle to 1

 

I'm guessing after :: pregnancy report would be a good time to 'reset' things.

I'm gonna test out the following code

 

Spoiler
:: pregnancy report [around] 
{
  (display:_around)
  (set:("sperminwomb" of $character's "womb") to (a:))
  (set:$placeincycle to 1)
  (set:$zygotewaiting to "false")
  (set:$implantationtimer to "false")
  (set:$playerovulating to "false")
}

 

 

Edited by mijhy
  • 2 weeks later...
Posted
On 12/21/2023 at 12:05 AM, himmlisches said:

I don't want to put all of the various side effects on the description page, as I want to let players discover the side effects during play. New features generally refers to additions to side effect functionality, and other details that I don't particularly want in the mod description. The mods aren't encrypted, so if someone really wants to they can always poke around the files and find out themselves.

I understand that exploration is part of the fun, but i would like to know what a mod does before i add it to my game and start a playthrough with it. You could use a spoiler to talk about the side effects, but please consider actually describing the pregnancy changes in the Mods description. The current sentence could mean a lot of things depending on your ideas of good gameplay and i don't think people enjoy searching through the comments to get an idea of what this does. 

Posted
On 3/5/2024 at 10:30 PM, lsrmsy said:

I understand that exploration is part of the fun, but i would like to know what a mod does before i add it to my game and start a playthrough with it. You could use a spoiler to talk about the side effects, but please consider actually describing the pregnancy changes in the Mods description. The current sentence could mean a lot of things depending on your ideas of good gameplay and i don't think people enjoy searching through the comments to get an idea of what this does. 

I agree. I'd like to know what effect the side effects will actually have, as well as knowing at least roughly how the preg changes work.

Posted (edited)

I'm reading the code again, looking at rapid cycle:

 

      (if:$character's "side effects" contains "Rapid Cycle")[
        (unless:(($placeincycle) of "cycle" of $character's "womb") is 4)[
          (set:$placeincycle to it + 1)
        ]
      ]

 

I thought maybe this could tone down, so I set it to happen 2/3rds of the time.

 

          (if:(random:1,3) < 3)[
            (set:$placeincycle to it + 1)
          ]



By my own  preferences, I thought a slightly gentler approach to ovulation risk would be more fun. So I've set cycle values to this - note I have added some 3s in to make use of them.

 

  (set:$mod_fert_cycle to (a:0,0,0,0,0,0,0,0,3,4,2,1,1,1))
  (set:_barrencycle to    (a:0,0,0,0,0,0,0,0))
  (set:_lowcycle to       (a:0,0,0,0,0,0,0,0,0,0,3,4,2,1))
  (set:_normalcycle to    (a:0,0,0,0,0,0,0,0,3,4,2,1,1,1))
  (set:_highcycle to      (a:3,4,2,2,2,1,1,1,3,3,2,2,1,1))
  (set:_ultracycle to     (a:3,4,2,2,1,1,3,4,2,2,1,1,2,3))
  (set:_maxcycle to       (a:4,4,4,4,4,4,4))


I also set breeder to high cycle. Still seems plenty easy to get knocked up if you're going for that.

Also note that two new official pills are in the game: Cum-Cure and Resistance. The mod also hasn't set anything specific for clones either. Cum-Cure says there's a low pregnancy chance, so I thought maybe both that and Resistance should be on low cycle for this mod.

 

Therefore, I edited it to

 

      (set: _cycle to "mod" of $fertilitycycle)
      (if:($pill_taken is "none") or ($pill_taken is "basic"))[
        (set: _cycle to "barren" of $fertilitycycle)
      ](else-if:($pill_taken is "Breeder"))[
        (set: _cycle to "high" of $fertilitycycle)
      ](else-if:($pill_taken is "Plus") or ($pill_taken is "X-Tra Strength"))[
        (set: _cycle to "normal" of $fertilitycycle)
      ](else-if:($pill_taken is "Cum-Cure") or ($pill_taken is "Resistance") or ($pill_taken is "Clone"))[
        (set: _cycle to "low" of $fertilitycycle)
      ]

 

I also saw some extra side effects that use $nano_xp but there's nowhere in the code that can be gained, I assume they need implementing at some point?

 

Some other (maybe rare) ways to initially aquire nanobots other than just the mutatio shop's enhancement pills would be cool, IMHO.

Edited by mijhy
  • 2 weeks later...
Posted

Hi, was wondering if there was an issue with the Ultra Tight effect. I'm on my 3rd separate playthrough and cannot seem to trigger it. So far I've triggered Deluge, Ribbed Throat, and Blowjob Princess. Those were pretty straightforward. The text said orgasming without anything to squeeze so I assumed it meant oral based positions. With some decent rolls, I've gotten a character up to four but still nothing. Or maybe five is the trigger? Quite the challenge! Either way, I appreciate anyone's help. Loving this mod so far.

  • 2 months later...
Posted

 

On 3/30/2024 at 9:37 AM, Jianna Demarest said:

Hi, was wondering if there was an issue with the Ultra Tight effect. I'm on my 3rd separate playthrough and cannot seem to trigger it. So far I've triggered Deluge, Ribbed Throat, and Blowjob Princess. Those were pretty straightforward. The text said orgasming without anything to squeeze so I assumed it meant oral based positions. With some decent rolls, I've gotten a character up to four but still nothing. Or maybe five is the trigger? Quite the challenge! Either way, I appreciate anyone's help. Loving this mod so far.

4 should be enough, but historically the "position" labels provided by the game might be inaccurate, so that one is buggy. I check as many 'non-penetrative' labels as possible, but it doesn't always work. Short of going through the main game position database and correcting those there's not much I can do about it, to my knowledge. Someone with a better understanding of harlowe and/or all the functions called during sex by the main game may be able to fix it.

 

On 3/21/2024 at 10:52 AM, mijhy said:

I also saw some extra side effects that use $nano_xp but there's nowhere in the code that can be gained, I assume they need implementing at some point?

I checked and at least on the current patch it seems correct. Its use feels a little wrong rn though so I'll probably change that in a future update.

On 3/21/2024 at 10:52 AM, mijhy said:

Some other (maybe rare) ways to initially aquire nanobots other than just the mutatio shop's enhancement pills would be cool, IMHO.

I agree, but I don't want to hamfist it in somewhere. Iirc Spike fun adds at as something you can get when spiked, which seems up your alley.

 

On 3/20/2024 at 1:37 PM, testry said:

I agree. I'd like to know what effect the side effects will actually have, as well as knowing at least roughly how the preg changes work.

Most of the side effects are pretty straight forward, and I feel that the ones I've described on the front page are enough to get a sense of what the mod does. If you really want to know before starting a playthrough, nothing is stopping you from downloading the 50kb file and looking at the list of side effects at the top.

Posted

We are some people to have a problem with the last release of the mod ver 2.20

I can't find a 'womb' data name in a datamap (with "gender", "real gender", "typical reluctance", and 55 other datanames)
Its names include: gender, real gender, typical reluctance, id, race, breasts, butt, hair, body type, height, weight kg, weight lb, height cm, height text, bra, eyes, alcohol consumed, alcohol status, alcohol tolerance, male name, max masculinity, archetype, charm, effective charm, name, fitness, effective fitness, intellect, effective intellect, status, charm buff, fitness buff, intellect buff, arousal, money, masculinity, birth control, temp pill, reluctance, identity, female name, side effects, real id, dna, pregnant, pregnancy known, reluctance history, reluctance reason, status effects, cocklength, ballsize, cockfatness, cumfactor, cumresiliance, cumvigor, spermcount, cockrating and pussy.

 

We have checked it in Discord, and hopefully there will be a fix
attached is the mods currently installed

 

Ver 1.20 work fine for me, but maybe I am missing something

Capture d'écran 2024-06-16 125219.png

Posted

I've no idea where to get the SWP trial. I've read here that it's suppoed to be a 950$ pill in "the pill shop" But there's no such pill. I've disabled every mod that adds new pills to see if maybe it was being overwritten by something else but it's just not there. So no idea. SWP Nanobods.twee is loaded of course. There are no conflicts detected by the mod loader.

Posted
13 hours ago, Edelweiss1630 said:

I've no idea where to get the SWP trial. I've read here that it's suppoed to be a 950$ pill in "the pill shop" But there's no such pill. I've disabled every mod that adds new pills to see if maybe it was being overwritten by something else but it's just not there. So no idea. SWP Nanobods.twee is loaded of course. There are no conflicts detected by the mod loader.

 

As noted in the mod description front page, you now gain the SWP trigger from Mutatio:

On 5/5/2023 at 3:11 PM, himmlisches said:

Additionally, adds a plethora of side effects, which you can begin to acquire by purchasing a Male Enhancement side effect from Mutatio.

The pill was a prior iteration, before the base game had added mutatio.

 

On 6/16/2024 at 12:29 PM, TheNalek said:

hopefully there will be a fix

Should be fixed by the last patch, please let me know! It should be good on an existing save, but you'll need to change back to a man first so the previously broken constructors get called.

Posted
4 hours ago, himmlisches said:

 

As noted in the mod description front page, you now gain the SWP trigger from Mutatio:

The pill was a prior iteration, before the base game had added mutatio.

 

Should be fixed by the last patch, please let me know! It should be good on an existing save, but you'll need to change back to a man first so the previously broken constructors get called.

Thanks! I found it now.

  • himmlisches changed the title to [Mod][XCL]Pregmod+SWP Side Effects
Posted (edited)

I'm getting tons of errors, similar to the complaints made early in this thread (I don't see where they were addressed). Absolute Spam sandwich.
 

Spoiler

I can't find a ('cumfactor') data name in a datamap (with "age", "agecat", "alternate names", and 42 other datanames) Its names include: age, agecat, alternate names, alternate possessive names, ballsdesc, ballsize, breath, cock, cockdesc, cockfatness, cockimg, cocklength, cockrating, dominance, events, favorite color, favorite style, first name, fitness, generation, hands, hygiene, id, img, img dir, intellect, kissing style, last name, looks, name, oral skill, personality, preference, race, sex name, stamina, tags, tipdesc, type, unfamiliar name, wealth, gender, appeal, petname and NBA. I can't find a ('spermcount') data name in a datamap (with "age", "agecat", "alternate names", and 42 other datanames) Its names include: age, agecat, alternate names, alternate possessive names, ballsdesc, ballsize, breath, cock, cockdesc, cockfatness, cockimg, cocklength, cockrating, dominance, events, favorite color, favorite style, first name, fitness, generation, hands, hygiene, id, img, img dir, intellect, kissing style, last name, looks, name, oral skill, personality, preference, race, sex name, stamina, tags, tipdesc, type, unfamiliar name, wealth, gender, appeal, petname and NBA. I can't find a ('cumresiliance') data name in a datamap (with "age", "agecat", "alternate names", and 42 other datanames) Its names include: age, agecat, alternate names, alternate possessive names, ballsdesc, ballsize, breath, cock, cockdesc, cockfatness, cockimg, cocklength, cockrating, dominance, events, favorite color, favorite style, first name, fitness, generation, hands, hygiene, id, img, img dir, intellect, kissing style, last name, looks, name, oral skill, personality, preference, race, sex name, stamina, tags, tipdesc, type, unfamiliar name, wealth, gender, appeal, petname and NBA. I can't find a ('cumvigor') data name in a datamap (with "age", "agecat", "alternate names", and 42 other datanames) Its names include: age, agecat, alternate names, alternate possessive names, ballsdesc, ballsize, breath, cock, cockdesc, cockfatness, cockimg, cocklength, cockrating, dominance, events, favorite color, favorite style, first name, fitness, generation, hands, hygiene, id, img, img dir, intellect, kissing style, last name, looks, name, oral skill, personality, preference, race, sex name, stamina, tags, tipdesc, type, unfamiliar name, wealth, gender, appeal, petname and NBA. There isn't a temp variable named _spermresiliance in this place. Temp variables only exist inside the same passage, hook, or lambda in which they're created. There isn't a temp variable named _currsperm in this place. Temp variables only exist inside the same passage, hook, or lambda in which they're created. I can't find a ('cumresiliance') data name in a datamap (with "age", "agecat", "alternate names", and 42 other datanames) Its names include: age, agecat, alternate names, alternate possessive names, ballsdesc, ballsize, breath, cock, cockdesc, cockfatness, cockimg, cocklength, cockrating, dominance, events, favorite color, favorite style, first name, fitness, generation, hands, hygiene, id, img, img dir, intellect, kissing style, last name, looks, name, oral skill, personality, preference, race, sex name, stamina, tags, tipdesc, type, unfamiliar name, wealth, gender, appeal, petname and NBA. I can't find a ('cumvigor') data name in a datamap (with "age", "agecat", "alternate names", and 42 other datanames) Its names include: age, agecat, alternate names, alternate possessive names, ballsdesc, ballsize, breath, cock, cockdesc, cockfatness, cockimg, cocklength, cockrating, dominance, events, favorite color, favorite style, first name, fitness, generation, hands, hygiene, id, img, img dir, intellect, kissing style, last name, looks, name, oral skill, personality, preference, race, sex name, stamina, tags, tipdesc, type, unfamiliar name, wealth, gender, appeal, petname and NBA. There isn't a temp variable named _spermresiliance in this place. Temp variables only exist inside the same passage, hook, or lambda in which they're created. There isn't a temp variable named _currsperm in this place. Temp variables only exist inside the same passage, hook, or lambda in which they're created.


Am I doing something wrong or is this mod known broken? It seems like most of the features are working.
 

: Further investigation showed this error only happens with Bruce, but I couldn't tell you why.

Edited by nalcomis
Posted

First of all I would like to say that I like the concept of this mod a lot. Sounds like one of the hottest mods to me actually.

 

I am a bit hesitant to use it, because of conflicts reported by the installer though.

I am getting a: Girls react to changes conflicts with Pregmod on [Potion Shop random cock enhancement extra]

and: Pharm Inc conflicts with Pregmod [girl sex aftermath]

 

My question is, if this is fine and everything should work as intended? If so, I would love to have that mentioned in the mods description.

If not, maybe this post helps to resolve mod conflicts, I hope.

 

Posted
14 hours ago, Hakuna_Matata said:

Can you make this cooperate with BR Pill Mod and BR Bree Mod?

 

From looking at the code, it looks like BR Pills supported a prior version. Not sure if it's been updated, or how different the current versions are.

Posted (edited)

Even with my typo fix I can't seem to trigger Ultra Tight.

 

So apparently I need to have four orgasms from getting blown as a girl during the same sex scene, right?

 

What does the (unless:$select_position is 0) do?

That is apparently only set if you choose the position from the list, which means it's pure luck if a blowjob one shows up, and if it does, it's me going down on him, so my girl doesn't cum. How am I supposed to get four orgasms from blow jobs if it only counts the ones I'm giving, not the ones I'm receiving?

Edited by Hakuna_Matata
Posted
On 6/25/2024 at 12:01 PM, Hakuna_Matata said:

Even with my typo fix I can't seem to trigger Ultra Tight.

 

So apparently I need to have four orgasms from getting blown as a girl during the same sex scene, right?

 

What does the (unless:$select_position is 0) do?

That is apparently only set if you choose the position from the list, which means it's pure luck if a blowjob one shows up, and if it does, it's me going down on him, so my girl doesn't cum. How am I supposed to get four orgasms from blow jobs if it only counts the ones I'm giving, not the ones I'm receiving?

Pretty sure Ultra Tight is bugged. I spent a few, like 2-3 hours trying to legitimately get it a couple days ago to no avail.

 

Supposed to get Ribbed Throat -> Blowjob Princess which allows for you to gain lust and orgasm from oral activities. I did that even managed to get 7 orgasms from oral/blowjob/69 positions, which the code says should trigger it just list (>3), but it wouldn't apply. I even somehow got tyrant from extensive attempt to get Ultra Tight without cheats.

 

So found a guy with natural Oral > 7, had had got 5 cunnilingus orgasms and finished him orally so the scene had no penetration whatsoever. Still didn't work.

 

I did notice during orgasms from oral activities that shouldn't have penetration that the orgasm text would say my player was being penetrated. I'm not sure if that was the issue or not, but from what I could tell after I looked at the acquisition code I should have met the criteria, unless Ultra Tight requires a specific mutatio enhance and I just didn't see that in the code. 

 

TLDR: Ultra Tight seems bugged, download a side effect manager mod to cheat it on, what I had to do. 

 

Posted

The code contains Prodigy and Renaissance Man as effects, but it looks like you can't actually trigger them.

 

To get Renaissance Man you need Prodigy, which triggers if nano_xp is > 400, but no piece of code anywhere every increments it.

It looks like it was supposed to be the XP gained that day?

Posted

The new update inserts tons of == (not familiar with what that does) but fixes none of the bugs I reported.

 

SWP Nanobods.twee still contains:

 

     (if:(($cocklessorgams > 2) and ($character's "gender" is "female") and ($character's "side effects" contains "Nanobots") and not ($character's "side effects" contains "Ultra Tight")))[
 

This should be spelled $cocklessorgasms (TWO s). This typo breaks the acquisition of Ultra Tight.

 

The code also still references $nano_xp, which breaks acquisition of Prodigy.

Also without Prodigy you can't get Renaissance Man, Intelligentsia or Golden God.

 

As a potential downloader of this mod you should also understand that pregmod will break birth control both in the base game (for example by the basic pills) and from mods (Pharm Inc has a morning after pill that has not terminated the pregnancy for me).

Posted

Here's what I changed in Nanobods.twee to get Ultra Tight acquisition to work:

 

:: Ultra Tight Acquisition [orgasm_sex]
{
  (unless:$select_position is 0)[
    (if:$select_position contains "position")[
     (if:($select_position's "position" is "blowjob") or ($select_position's "position" is "69") or ($select_position's "position" is "cunnilingus") or (($select_position's "pleasure factor" is "oral")+))[
      (set:$cocklessorgasms to it + 1)
      (if:(($cocklessorgasms > 2) and ($character's "gender" is "female") and ($character's "side effects" contains "Nanobots") and not ($character's "side effects" contains "Ultra Tight")))[
        (set:$character's "side effects" to it + (a:"Ultra Tight"))
        (print:"\n")
        <mark>(css:"font-size:3vmin")[Side effect gained: Ultra Tight.] The nanobots mold your pussy to try and grab onto the missing cock, leaving you ridiculously tight </mark>
        (print:"\n")
      ]
    ]
   ]
  ]
  (if:$orgasm_type is "oral")[
    (set:$cocklessorgasms to it + 1)
    (if:(($cocklessorgasms > 2) and ($character's "gender" is "female") and ($character's "side effects" contains "Nanobots") and not ($character's "side effects" contains "Ultra Tight")))[
      (set:$character's "side effects" to it + (a:"Ultra Tight"))
      (print:"\n")
      <mark>(css:"font-size:3vmin")[Side effect gained: Ultra Tight.] The nanobots mold your pussy to try and grab onto the missing cock, leaving you ridiculously tight </mark>
      (print:"\n")
    ]
  ]
}
 

Posted (edited)
On 6/23/2024 at 2:41 PM, nalcomis said:

I'm getting tons of errors, similar to the complaints made early in this thread (I don't see where they were addressed). Absolute Spam sandwich.
 

  Reveal hidden contents

I can't find a ('cumfactor') data name in a datamap (with "age", "agecat", "alternate names", and 42 other datanames) Its names include: age, agecat, alternate names, alternate possessive names, ballsdesc, ballsize, breath, cock, cockdesc, cockfatness, cockimg, cocklength, cockrating, dominance, events, favorite color, favorite style, first name, fitness, generation, hands, hygiene, id, img, img dir, intellect, kissing style, last name, looks, name, oral skill, personality, preference, race, sex name, stamina, tags, tipdesc, type, unfamiliar name, wealth, gender, appeal, petname and NBA. I can't find a ('spermcount') data name in a datamap (with "age", "agecat", "alternate names", and 42 other datanames) Its names include: age, agecat, alternate names, alternate possessive names, ballsdesc, ballsize, breath, cock, cockdesc, cockfatness, cockimg, cocklength, cockrating, dominance, events, favorite color, favorite style, first name, fitness, generation, hands, hygiene, id, img, img dir, intellect, kissing style, last name, looks, name, oral skill, personality, preference, race, sex name, stamina, tags, tipdesc, type, unfamiliar name, wealth, gender, appeal, petname and NBA. I can't find a ('cumresiliance') data name in a datamap (with "age", "agecat", "alternate names", and 42 other datanames) Its names include: age, agecat, alternate names, alternate possessive names, ballsdesc, ballsize, breath, cock, cockdesc, cockfatness, cockimg, cocklength, cockrating, dominance, events, favorite color, favorite style, first name, fitness, generation, hands, hygiene, id, img, img dir, intellect, kissing style, last name, looks, name, oral skill, personality, preference, race, sex name, stamina, tags, tipdesc, type, unfamiliar name, wealth, gender, appeal, petname and NBA. I can't find a ('cumvigor') data name in a datamap (with "age", "agecat", "alternate names", and 42 other datanames) Its names include: age, agecat, alternate names, alternate possessive names, ballsdesc, ballsize, breath, cock, cockdesc, cockfatness, cockimg, cocklength, cockrating, dominance, events, favorite color, favorite style, first name, fitness, generation, hands, hygiene, id, img, img dir, intellect, kissing style, last name, looks, name, oral skill, personality, preference, race, sex name, stamina, tags, tipdesc, type, unfamiliar name, wealth, gender, appeal, petname and NBA. There isn't a temp variable named _spermresiliance in this place. Temp variables only exist inside the same passage, hook, or lambda in which they're created. There isn't a temp variable named _currsperm in this place. Temp variables only exist inside the same passage, hook, or lambda in which they're created. I can't find a ('cumresiliance') data name in a datamap (with "age", "agecat", "alternate names", and 42 other datanames) Its names include: age, agecat, alternate names, alternate possessive names, ballsdesc, ballsize, breath, cock, cockdesc, cockfatness, cockimg, cocklength, cockrating, dominance, events, favorite color, favorite style, first name, fitness, generation, hands, hygiene, id, img, img dir, intellect, kissing style, last name, looks, name, oral skill, personality, preference, race, sex name, stamina, tags, tipdesc, type, unfamiliar name, wealth, gender, appeal, petname and NBA. I can't find a ('cumvigor') data name in a datamap (with "age", "agecat", "alternate names", and 42 other datanames) Its names include: age, agecat, alternate names, alternate possessive names, ballsdesc, ballsize, breath, cock, cockdesc, cockfatness, cockimg, cocklength, cockrating, dominance, events, favorite color, favorite style, first name, fitness, generation, hands, hygiene, id, img, img dir, intellect, kissing style, last name, looks, name, oral skill, personality, preference, race, sex name, stamina, tags, tipdesc, type, unfamiliar name, wealth, gender, appeal, petname and NBA. There isn't a temp variable named _spermresiliance in this place. Temp variables only exist inside the same passage, hook, or lambda in which they're created. There isn't a temp variable named _currsperm in this place. Temp variables only exist inside the same passage, hook, or lambda in which they're created.


Am I doing something wrong or is this mod known broken? It seems like most of the features are working.
 

: Further investigation showed this error only happens with Bruce, but I couldn't tell you why.

Not able to replicate this with Bruce/bruce creampie. Maybe mod conflict?

 

1 hour ago, Hakuna_Matata said:

As a potential downloader of this mod you should also understand that pregmod will break birth control both in the base game (for example by the basic pills) and from mods (Pharm Inc has a morning after pill that has not terminated the pregnancy for me).

 

Yeah other mods that mess with pregnancy are generally incompatible. The mod is compatible with birth control, though, and it does reduce pregnancy risk by a lot. But, it doesn't overrule side effects that you can get. Hopefully ultra tight works- I didn't know about $orgasm_type having oral as an option. While I do check in here on occasion, I'm much more likely to see your feedback on the XCL discord.

Edited by himmlisches
update

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