Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(2 edits) (-1)

So I played the game with and without this mod, and why does this mod add so many horrible typos? like the Sexual Traits list being called "Sexuals" and a bunch of immersion breaking, typo filled dialogue from people in the jail. Really breaks the immersion of the game and makes all my slaves talk like English is their third language. Also is there not an action during sex interactions to make slaves drink urine?

Edit: Not to mention, in top of the typos and questionable decisions that are anti player friendly and should have been redesigned to be not as painfully obnoxious, what the fuck is up with the genital wear and tear thing? Why does my slightly above average dick tear Emily Hale after the aphrodisiac scene when she is no longer a virgin? Vaginas don't have a wear and tear durability meter for fuck sake, they are elastic and self lubricating. They stretch to accommodate birth. It's also immersion breaking and makes no fucking sense. A soreness system would have been better.

This mod isn’t for everyone. I appreciate you taking the time to try it and give your feedback. The systems aren’t perfectly optimized, it’s mostly guesswork to find out what works to give the intended result. The typos tend to happen when you’re trying to add in a lot of new dialogue (especially with any level of randomness or procedural generation). It’s unfortunate, but it happens. Almost every system added has fairly extensive toggles and customization under ExpansionSettings.gd where they can be modified and often disabled. However, instead of what currently seems to be an aggressive rant at the team who have spent a lot of their time creating this free mod for those who enjoy it to enjoy, I’ll just encourage you to try making your own mod with any and all changes you’d prefer to see in the game! This is an awesome modding community and we are always happy to see new content.

(1 edit)

I'd do so without hesitation if I had any experience coding with the engine. Is there any way to heal tears after the tear during sex without elasticity or do the slaves permanently remain torn?

I'm just going to copy my post from the Discord, since it seems to cover most of this. As far as I remember, the condition of being torn only exists for at most the duration of the interaction, though stretching is semi-permanent.


In version 1.7, you can use the Constants mod to easily and safely adjust many settings for Aric's mod. There are many parts to the stretching system; the ones related to your request are tearing and stretching. Tearing is when the person's stretching becomes unpleasant; Stretching is the chance to permanently increase in size. Stretching can effectively be disabled by reducing the chance to well below zero(it's a base chance not a multiplier, so there are other factors). The option names start with "stretchchance".


Unfortunately, tearing cannot be easily disabled. There are options for auto-recovery like "tornvagautorecovery", but this just means that it heals during the next orgasm. In order to disable tearing, you would need to edit the script newsexsystem.gd. If you change the mod file, then you must re-apply. If you change the game file, then it will vanish whenever you apply mods. Any text editor will do, but decent ones will make it easier.

if difference >= 5 + rand_range(-5,0) + person.sexexpanded.pliability: 


This line can be found twice in the file, when true the person can tear. Thus to disable tearing we simply need to ensure that it is always false. This can be achieved by a simple change like this: 

if difference - 1000 >= 5 + rand_range(-5,0) + person.sexexpanded.pliability: 

If tearing is only temporary then I guess it's fine to have it on, but if stretching is semi permanant, is it possible to restore tightness via the laboratory or some other method?

(2 edits)

I'm away and don't have access to the code(I just remembered the GitHub, though the versions don't quite match). There is a nightly chance to restore tightness, though there are 2 RNG checks. The details are found in expansion.gd in func dailyTighten. There is an option accessible by Constants(vaginaltightenchance), though it simply changes the base chance with an age multiplier. It is affected by the new trait for elasticity.

never heard of a funny spell that can have pretty different result ?

mutate is the awser for most issue

Can you please post a few screenshots of the typoed dialogue when you encounter it? It would make it easier to locate to fix.