CREATE YOUR AI CUM SLUT ON CANDY.AI TRY FOR FREE
x
3.50 star(s) 147 Votes

ANormalMaster

Newbie
Jun 3, 2017
22
59
So, having played it again I've noticed how incredibly inconsistent the characters are all the time. Especially MC and his wife... On the one hand he's encouraging her to fuck her student and boss, and on the other he's super jealous anytime Jenna sends him messages with badly censored pics of his wife getting railed... Makes no sense whatsoever.
Add in the horrid grind of clicking through to the next day, the completely pointless debt mechanic, etc.
 

88Michele88

Bloodborn Vampire
Game Developer
Apr 22, 2018
2,891
3,065
So, having played it again I've noticed how incredibly inconsistent the characters are all the time. Especially MC and his wife... On the one hand he's encouraging her to fuck her student and boss, and on the other he's super jealous anytime Jenna sends him messages with badly censored pics of his wife getting railed... Makes no sense whatsoever.
Add in the horrid grind of clicking through to the next day, the completely pointless debt mechanic, etc.
It not even e dept. Mr Salim buy the company from MC and demand money he how him what the actual fuck? It illegal he can demand money after buy the compnay. It high jail sentenced for yard it called froud plus blackmail for what I don't remember MC how something to Mr Salim. so totaly illegal and make no sense. He bought the company and then he ask for money isn't illigale. When MC got indebited andfor wht reason? Are we serious?
 

88Michele88

Bloodborn Vampire
Game Developer
Apr 22, 2018
2,891
3,065
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.
 
Last edited:

Botopa

Member
Aug 18, 2018
287
269
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
714
816
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,065
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,065
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
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
226
355
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
354
1,213
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
263
88
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,065
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
287
269
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
354
1,213
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
3.50 star(s) 147 Votes