Botopa

Member
Aug 18, 2018
296
281
270
For those who think this game takes too long with all the days between messages. I attached my speedup file. This will add a function that will set any "..._write_next_day" variable I could find to 1 as long as the value was between 1 and 14 before. Meaning a new message will appear the next day. Only affects the current waiting periods, not the next ones.
I will not take responsibility if it fucks up your game and/or save. Use it responsibly, I only use it every 2 days in example. This makes the game quite a bit faster.

Installation and usage:
Extract archive and put both files in "<gamefolder>\game". Run the game, open the console (shift+o) and enter speedUp().

In addition if you have multiple places to visit in the afternoon, go to one then at night enter "current_time = 2" into the console and you can go to the next.
 
  • Like
Reactions: crisbr

Templar Knight

Active Member
Feb 2, 2018
752
843
296
Is Christina's route abandoning BBC still bugged? I set Christina the option to forget the BBC but the option remains active even after three days and the option for the wife to ask the MC if she wants to do ffm with Christina does not appear.

and yes I am using the bugfix, do I need a new save when installing the bugfix ?
 
  • Like
Reactions: 88Michele88

88Michele88

Bloodborn Vampire
Game Developer
Apr 22, 2018
2,891
3,094
434
Is Christina's route abandoning BBC still bugged? I set Christina the option to forget the BBC but the option remains active even after three days and the option for the wife to ask the MC if she wants to do ffm with Christina does not appear.

and yes I am using the bugfix, do I need a new save when installing the bugfix ?
Got the same bug and she keep gaing BBC addiction instead of going down.
 
  • Like
Reactions: Templar Knight

88Michele88

Bloodborn Vampire
Game Developer
Apr 22, 2018
2,891
3,094
434
good thing i'm not the only one, i will wait to see if there will be a patch for this.
I have same thing with MC wife whe I disacived mee up with mark and actived stop talking to Mark it still after 3 days see it like it like I haven't give command to MC wife. still appear whit mark endless look to apologies to MC's wife.
 
  • Like
Reactions: Templar Knight

PokedHoleGuru

New Member
Oct 13, 2021
5
3
38
Is there any other game that uses this phone esque system. Games really grindy but the content at least was pretty good for a playthrough.
 
  • Like
Reactions: Busras

Yuki-x

Member
Jul 22, 2021
261
476
146
Add the day on the phone.

create a txt file. Add the following code and to rename it to "patchdate.rpy" or "whatever_you_want.rpy".
Code:
init python:
#### console invocation  "SHIFT+O" ####
#### developer mode invocation "SHIFT+D" ####
#### Default setting console on, dev mode off ####
#### To enable/disable the console  and/or the developer mode, remove/add the symbol "#" symbol at the in the following 2 strings ####
    config.console = True
#    config.developer = True

    def which_day(day=0):

        global days
        day_num = (current_day % 7)
        day_name = ('Sat', 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri')
        day = day_name[day_num]
        return day
        print which_day()


screen Day_of_Week:
    zorder 101
    text which_day()  size 36 color "#ffffff80" xpos 63 ypos 25
#### If you want to add a button to skip the current day when clicked, delete the "#" symbol from the following 3 lines ####
#    textbutton("NextDay") xalign 0.5 ypos 5:
#            if can_skip_time == 1:
#                 action [SetVariable('current_time', 0), Jump('Next_Day')]
Put it inside the game directory.
Open the "script.rpy" with a text editor and search for the line label main_menu_phone:. And in the following line add
Code:
    show screen Day_of_Week
save the file and start you game.

ps. If you do want the day to appear only in the main phone open again the "script.rpy" and search for the line
label messager_stage_chooser: and label fuckstagram_stage_chooser: and in their following line add
Code:
    hide screen Day_of_Week
normal patch screenshot.png and Skip_a_Day.jpg with the ability to skip the current day

edit: added a zip with the files already patched for c0.3.0. Extract and add them inside the "game" folder.
edit2: it is compatible with old saves (since the current_day is already defined as a flag inside the game).
To continue/import an old save and have the day appear on the phone you must open the file "script_0_2.rpy" with a text editor and after the line label after_load: insert/write
Code:
     show screen Day_of_Week
Then start the game and load your saved file. The day will appear in the phone screen

edit3: Added console and developer modes. (this game is way to buggy to play without the console... )
for the console you can:
1) force start or replay an event with eg.
label wife_husband_messager02_1_1: by typing jump wife_husband_messager02_1_1 and pressing the key "enter".
2) or trigger the next event eg.
if the game is stack in the event wife_husband_line_stage == 6
by typing wife_husband_line_stage = 7 and pressing the key "enter"
 
Last edited:

Firebless

Member
Feb 16, 2018
361
1,245
327
Can we also have the chance have to beat up Paul to delet our nice from Paul's WifeSpy this we can still have XY option and ew can also beat the sith out of paul and add our nice as target so no one can do shit about it. It Gonna be cool even hung out as woman with our nice, wife and who go undercover and what kind of shit Mr Salim doing.

I would love to see to get two bird with one ston: XY and Nice by beating up Paul.
Oh but we do have the option to beat up Paul. You can beat Paul's dick if you select XY and go on a weekend with him.
Screenshot (1674).jpg
 

abelweeknd88

Member
Mar 24, 2023
287
96
142
Add the day on the phone.

create a txt file. Add the following code and to rename it to "patchdate.rpy" or "whatever_you_want.rpy".
Code:
init -10 python:


    def which_day(day=0):

        global days
        day_num = (current_day % 7)
        day_name = ('Sat', 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri')
        day = day_name[day_num]
        return day
        print which_day()


screen Day_of_Week:
    zorder 101
    text which_day()  size 36 color "#ffffff80" xpos 63 ypos 25
Put it inside the game directory.
Open the "script.rpy" with a text editor and search for the line label main_menu_phone:. And in the following line add
Code:
    show screen Day_of_Week
save the file and start you game.

ps. If you do want the day to appear only in the main phone open again the "script.rpy" and search for the line
label messager_stage_chooser: and label fuckstagram_stage_chooser: and in their following line add
Code:
    hide screen Day_of_Week
View attachment 2939454

edit: added a zip with the files already patched for c0.3.0. Extract and add them inside the "game" folder.
whats the use of day?
 

88Michele88

Bloodborn Vampire
Game Developer
Apr 22, 2018
2,891
3,094
434
Oh but we do have the option to beat up Paul. You can beat Paul's dick if you select XY and go on a weekend with him.
View attachment 2939446
I know. But this image show us that whe didn't got XY option to changes MC into female.
Thethink I talking about is to have that kind option on if we had choose XY and later on I would love to see XY option tha chane to had cnace to bath up Paul later on and of cour don't mine have 4th option along side others option like:
4th option "Try XY and Beat up Paul later". Could be fun. Not both thos opton as different path where the MC gained the abiity to turn into woman and gaind XY as well. gonna be really fun to watch.

If we are XY only we could have some option later to turnbeat up Paul after without lettim knowit.
An were after beat up Paul asking to Unkown the option XY leter o this we could have FMC of MC as Female and suduce other womans. Thi way we could nice phone on 3 path instead of one. first option dosen't count. There woul be just 4 option inseat of 3 as i told. If you don't like the idea who amI to wish for it.
AWifesPhone - About option here.jpg
 
  • Like
Reactions: Firebless

Botopa

Member
Aug 18, 2018
296
281
270
Ok, finally got around to really playing the game again. Used my speedup a lot, if you want it, you can find it here.

Some bugs got removed. The wifespy app Icon now showing that a new msg is availlable is a great help. There is a bug with the sons screen in the wifespy app once he changes his avatar, can be ignored in game but should of course be fixed. Paths are still mostly independant from each other, which leads to inconsistencies (MC ok with his wife fucking someone in path 1, but not ok with her fucking someone in path 2). Doubt that this can be changed, as it would require quite complex dependencies if a path can advance or not. So I think I'll live with it.
Some scenes got some slight changes, or maybe I had forgotten them. In general it was engaging, even if the MC comes across like a gullible wimp. Still one of the few games I can spend hours on, even with speedup. Text in the fuckstagram app can not easily be read when the wife chats with greg, maybe change that. Also add some sort of highlight for image/video links in messages so it is easier to notice them when skipping.

What I would also like is some sort of code or so at the beginning of a message to which path the message belongs (could be turned on/off in some optios, heck give me a variable verboseMsgs I can simply set to true). Some can be read from context but not all of them.
Also I would like it, if a path is blocked by a user decision, that the path info should not read "end of content" but instead "you chose a different path". Would make it easier to check which pathes were chosen in a playthrough.
Think it would also be good to split up the nieces path at the XY choice with paul instead of jumping to specific steps.
 

Firebless

Member
Feb 16, 2018
361
1,245
327
I know. But this image show us that whe didn't got XY option to changes MC into female.
Thethink I talking about is to have that kind option on if we had choose XY and later on I would love to see XY option tha chane to had cnace to bath up Paul later on and of cour don't mine have 4th option along side others option like:
4th option "Try XY and Beat up Paul later". Could be fun. Not both thos opton as different path where the MC gained the abiity to turn into woman and gaind XY as well. gonna be really fun to watch.

If we are XY only we could have some option later to turnbeat up Paul after without lettim knowit.
An were after beat up Paul asking to Unkown the option XY leter o this we could have FMC of MC as Female and suduce other womans. Thi way we could nice phone on 3 path instead of one. first option dosen't count. There woul be just 4 option inseat of 3 as i told. If you don't like the idea who amI to wish for it.
View attachment 2939538
This is how we destroy Paul: as a woman
lifeforce 2.gif lifeforce1.gif
 
  • Haha
Reactions: 88Michele88

88Michele88

Bloodborn Vampire
Game Developer
Apr 22, 2018
2,891
3,094
434
This is how we destroy Paul: as a woman
View attachment 2939659 View attachment 2939661
After 3 night with him as woman, we will wait for him outside work place like we ded in a path "beat Paul up". 3 night is good one and next day we death him up delet nice phone number from his wifespy and delete even her number and we did 3 bird with one ston. :devilish: :devilish: :devilish: cause he lied to to us and we can even tell lena everythingpaul did cheating on her.
 

Botopa

Member
Aug 18, 2018
296
281
270
Some game events happen only on Saturday's and Weekends(sundays ?).
With this patch, you'll know when the Saturday comes and avoid missing the event.
I believe this is incorrect. While the game text sometimes says 'Event A happens next weekend' there is no such function in the game. Except for a few ones at the beginning of the game, all events just take time to happen not a specific date. If you do a search for "current_day" on the extracted scripts in the game you get 11 matches. Non of which calculate the day of the week, making it highly unlikely for events to check if it is saturday.
Also if you modify the ..._write_next_day variable you can get your events tomorrow.
 
Dec 21, 2018
294
396
73
I do find it amusing that this dev thought to himself...."if I had a mind control application, I’ll have sex with them once or twice, but I'm going to make them screw everyone else instead and forget about me, especially if they're black (I mean ALL black people have 12 inch dongs after all :KEK:)...and I bet everyone else would do the same thing as me!" (man I'm so smart, I'm going to have thousands of subscribers with my idea :WeSmart:) :LOL::ROFLMAO:
He has hundreds of patreons actually, so he's definitely raking it in. He even quit his day job. That's how serious he (and his wife) are taking it now. I appreciate that.
 
3.30 star(s) 176 Votes