pds72

Well-Known Member
Sep 25, 2019
1,100
991
307
1. BS... new relations, at least family type relations, have not been introduced since v0.34
1:
Python:
        global GivenYouBirthT
        GivenYouBirthT = "given you birth"
This was added somewhere between v0.43 and v0.49.

2: People would complain if the patch didn't match the game version. The same as they would complain if a patch is blank, when all that is needed is to have a file present. People like to complain.

3: I would prefer .rpy to see if it has changed or not. But it is whatever.
 
  • Like
Reactions: WCold

Yuki-x

Member
Jul 22, 2021
261
475
146
1:
Python:
        global GivenYouBirthT
        GivenYouBirthT = "given you birth"
This was added somewhere between v0.43 and v0.49.

2: People would complain if the patch didn't match the game version. The same as they would complain if a patch is blank, when all that is needed is to have a file present. People like to complain.

3: I would prefer .rpy to see if it has changed or not. But it is whatever.
1 & 2: ... ok. Thousands of people would complain, if instead "given you birth", they read "owned you" in a sentence or two ....
...But they could edit the rpy file themselves and fix it in what.... 5 seconds?
3: You don't check the mod to see if something is changed. You check the original code...
 

Venters616

Newbie
Jan 3, 2022
27
4
126
I'd say it's needed, but try the beginning without it at least once... It's possibly the worst case of "it's not incest Patreon, honest ;) " I've seen. To it's credit it's not the typical "Landlady" and "roommates" without the patch.
now i have to ask. what is it then?
 

WCold

Active Member
Aug 17, 2016
734
584
291
1 & 2: ... ok. Thousands of people would complain, if instead "given you birth", they read "owned you" in a sentence or two ....
...But they could edit the rpy file themselves and fix it in what.... 5 seconds?
3: You don't check the mod to see if something is changed. You check the original code...
So you suggest everyone to code their own patch after they learn how the game's code works, got it
 

SonsOfLiberty

Community Champion
Compressor
Sep 3, 2022
30,054
275,659
957
WTF is the family mode released as a compiled (rpyc) file? :rolleyes:
Just to get thumbs up and likes with every release?:unsure:
Just create a text file named "family-mod.rpy" or "[whatever name you want].rpy", add the following code inside the file and put it in the game directory.
Code:
init python:
    persistent.BeforeFuncsList.append(('InitTabooEdition', 0))


label InitTabooEdition:
    python:
        global RelativeT
        RelativeT = _("relative")
        global RelativesT
        RelativesT = _("relatives")
        global RelatedT
        RelatedT = _("related")
        global BloodRelatedT
        BloodRelatedT = _("blood-related")
        global OwnBloodT
        OwnBloodT = _("own blood")
        global MyOwnBloodT
        MyOwnBloodT = _("my own blood")
        global GivenYouBirthT
        GivenYouBirthT = _("given you birth")
        global IncestT
        IncestT = _("inappropriate")
        global IncestuousT
        IncestuousT = _("incestuous")
        global FamilyT
        FamilyT = _("family")
        global MyFamilyT
        MyFamilyT = _("my family")
        global YourFamilyT
        YourFamilyT = _("your family")
        global FamiliesT
        FamiliesT = _("families")
        global KinT
        KinT = _("kin")
        global ParentT
        ParentT = _("parent")
        global ChildT
        ChildT = _("child")
        global ChildrenT
        ChildrenT = _("children")
        global KidsT
        KidsT = _("kids")
        global ParentsT
        ParentsT = _("parents")
        global MyParentsT
        MyParentsT = _("my parents")
        global SiblingT
        SiblingT = _("sibling")
        global SiblingsT
        SiblingsT = _("siblings")
        global SisT
        SisT = _("sis")
        global SisterT
        SisterT = _("sister")
        global YourSisterT
        YourSisterT = _("your sister")
        global MySistersT
        MySistersT = _("my sisters")
        global SistersT
        SistersT = _("sisters")
        global TwinT
        TwinT = _("twin")
        global BrotherT
        BrotherT = _("brother")
        global BroT
        BroT = _("bro")
        global BrothersT
        BrothersT = _("brothers")
        global SonT
        SonT = _("son")
        global SonsT
        SonsT = _("sons")
        global DaughterT
        DaughterT = _("daughter")
        global DaughtersT
        DaughtersT = _("daughters")
        global MomT
        MomT = _("mom")
        global MomsT
        MomsT = _("moms")
        global StepT
        StepT = _("step")
        global HalfT
        HalfT = _("half-")
        global MyMomT
        MyMomT = _("my mom")
        global MotherT
        MotherT = _("mother")
        global MothersT
        MothersT = _("mothers")
        global MyMotherT
        MyMotherT = _("my mother")
        global YourMotherT
        YourMotherT = _("your mother")
        global MommyT
        MommyT = _("mommy")
        global MotherlyT
        MotherlyT = _("motherly")
        global AuntT
        AuntT = _("aunt")
        global AuntsT
        AuntsT = _("aunts")
        global AuntyT
        AuntyT = _("aunty")
        global AuntiesT
        AuntiesT = _("aunties")
        global NieceT
        NieceT = _("niece")
        global NiecesT
        NiecesT = _("nieces")
        global NephewT
        NephewT = _("nephew")
        global NephewsT
        NephewsT = _("nephews")
        global DadT
        DadT = _("dad")
        global FatherT
        FatherT = _("father")
        global TheFatherT
        TheFatherT = _("the father")
        global MyFatherT
        MyFatherT = _("my father")
        global YourFatherT
        YourFatherT = _("your father")
        global CousinT
        CousinT = _("cousin")
        global CousinsT
        CousinsT = _("cousins")
        global GrandT
        GrandT = _("grand")
        global GrandmotherT
        GrandmotherT = _("grandmother")
        global GrandmothersT
        GrandmothersT = _("grandmothers")
        global GrandmaT
        GrandmaT = _("grandma")
        global GrandmasT
        GrandmasT = _("grandmas")
        global GrannyT
        GrannyT = _("granny")
        global GranT
        GranT = _("gran")
        global NanaT
        NanaT = _("nana")
        global GransT
        GransT = _("grans")
        global GrandsonT
        GrandsonT = _("grandson")
        global GranddaughterT
        GranddaughterT = _("granddaughter")
        global GranddaughtersT
        GranddaughtersT = _("granddaughters")
        global GrandchildrenT
        GrandchildrenT = _("grandchildren")
        global GrandpaT
        GrandpaT = _("grandpa")
        global GrandadT
        GrandadT = _("grandad")
        global GranddadT
        GranddadT = _("granddad")
        global GrandfatherT
        GrandfatherT = _("grandfather")
        global InLawT
        InLawT = _(" (-in-law)")
    return
It will work in future versions too.
I attached a sample for the lazy ones...
The patch is from the dev, it's offical...

And, the dev's "official" My compressed versions already has it included.
 
Last edited:

Tarz00n

Newbie
Feb 9, 2019
67
77
202
everything is ok bro, I already made sure that the game does not have a “background” sound, but when I am in some place it is, it turns out that’s how it works

listen, could you help me, please, why don’t other people’s saves work for me? I have already cleared all my saves - I load other people’s completed ones, but nothing just works for me..
Ok, i'm not sure if i can help here:
1. clean install without mods,
2. delete all save files in your game folder
3. there are also save files in this folder: CAREFUL, backup to be sure!

C:\Users\HERE HAS TO BE YOUR USERNAME\AppData\Roaming\RenPy\StraitendesTimes

normally the folder "AppData" is invisible (Select View > Show > Hidden items.), make sure you check this in your winExplorer,
navigate down the folder structure till you get to the game folder, "StraitenedTimes-1234567890" (looking similar to this)
in there i have some lose saves and an folder named "sync" also saves in there,
backup/copy the saves in another folder, e.g. backup and then try your files which you got from here...

if this isn't working, i have no clue what the problem is, then you need a "specialist" xD
 
  • Like
Reactions: pablo1360

gallanash

Active Member
Apr 12, 2022
519
162
167
In the previous update, I had Biological Mom to be a witness to help the dad so I talked with the lawyer, she approved. Eventually, the biological mom appeared in court.

In this update, I still chose have the stepmom also be a witness and help the dad so same thing, I proceeded to the lawyer. However, the lawyer said it's not a good idea.

Is this the wrong move then? I can't have the stepmom help the dad?
Just either be a neutral witness or a witness against the dad?
Thank you man,I did the same as yours about Mom in the court,she indeed came out at the court in the last update.
I think I shall leave it behind for now..Maybe some fix later ,or something else needed to proceed
 

yunmaster

Well-Known Member
Aug 29, 2017
1,275
1,469
365
HI,how to triger this one:

- Neighborhood-mom (Lauren). Cheerleader (Brigitte). Lauren home. Lauren bedroom. Group scene. Lick boobs. Kisses. Cum. No sex scene.
To see this scene, you must first visit Brigitte at 23 o'clock and have sex.
After that, when we visit Lauren at one o'clock and sleep together, Brigitte visits and gets angry.
That's where the scene of the three starts. You have to repeat it over and over again.
 

999phil999

Newbie
Nov 17, 2023
71
40
142
Relations["???"].allure.Value=###
Where ??? is the character and ### is the value
Example: Relations["Mom"].allure.Value=50

BankManager
DinerManager
Father
FatCop
FGran = Grandmother dad's Mom
FLawyer
FLawSecretary
HotCop
Judge
LitTeacher
LitTeacherFiance
MAunt
Mom
MotelManager
MGran = Grandmother mom's Mom
NeighBoy
NeighCheerl
NeighMom
OldSis
OSfriend
PETeacher
PGrapher
Principal
Prosecutor
SluttyMaid
SMom
StepOS
StepYS
XShopOwner
YoungSis
Thank you so much.
 

gallanash

Active Member
Apr 12, 2022
519
162
167
To see this scene, you must first visit Brigitte at 23 o'clock and have sex.
After that, when we visit Lauren at one o'clock and sleep together, Brigitte visits and gets angry.
That's where the scene of the three starts. You have to repeat it over and over again.
Yes ,I already get it done,thank you all the same bro!
 
Jan 24, 2022
268
550
217
Grandma Sophia is pretty hot.
Most defiantly agree, but then most MILFs and GILFs are pretty hot. Hopefully not too far down the road we can give Grandma Sophia a proper front and backdoor schtupping that she obviously needs. Only thing better would be a DP or gangbang but too many vanilla beans around here get their fruit-of-the-looms in a complete knot when ever that type of thing is brought up for it to ever happen.
 
  • Like
Reactions: Areyouken
3.70 star(s) 207 Votes