1. New relations are added from time to time (yes, those additions are rare as the game is in long development), so you need to check if your patch is valid after every release
2. When the new version releases and the patch comes out the same, it's either running around everywhere telling that you can use old files or simply put the patch with the same version number as the game
3. Why should it be released as code if the game translates it to inner files?
1. Not true, last added string was v0.44
Did I touch a cord or something?
1. BS... new relations, at least family type relations, have not been introduced since v0.34
2. Of course it comes out the same... He simply adds and runs the same rpy file, copies the compiled rpyc file and adds a changed number.
3. So what is your point? All renpy games run as compiled code (rpya, rpyb & rpyc). Even those that are released in native code (rpy). I guess all other modders are idiots since they do not obfuscate their code by releasing compiled files...
And taking into account the recent virus incidents... is a very valid reason, to not release patches in obfuscated or compiled code....
1:1. BS... new relations, at least family type relations, have not been introduced since v0.34
global GivenYouBirthT
GivenYouBirthT = "given you birth"
1 & 2: ... ok. Thousands of people would complain, if instead "given you birth", they read "owned you" in a sentence or two ....1:
This was added somewhere between v0.43 and v0.49.Python:global GivenYouBirthT GivenYouBirthT = "given you birth"
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.
now i have to ask. what is it then?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.
So you suggest everyone to code their own patch after they learn how the game's code works, got it1 & 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...
The patch is from the dev, it's offical...WTF is the family mode released as a compiled (rpyc) file?
Just to get thumbs up and likes with every release?
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.
It will work in future versions too.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
I attached a sample for the lazy ones...
It's a "commune" where nobody is related at all.now i have to ask. what is it then?
Ok, i'm not sure if i can help here: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..
https://f95zone.to/threads/straitened-times-v0-51-0-hrelease.52690/post-14042672does anyone have v51 walktrough
damm thing game need character hint!!!!!(like what to do with the character )
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.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?
To see this scene, you must first visit Brigitte at 23 o'clock and have sex.HI,how to triger this one:
- Neighborhood-mom (Lauren). Cheerleader (Brigitte). Lauren home. Lauren bedroom. Group scene. Lick boobs. Kisses. Cum. No sex scene.
As with everything in this game. Grind, grind , grind.. You have to repeat it over and over again.
Thank you so much.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