n00bi

Active Member
Nov 24, 2022
670
730
217
you can use the phone and get location & time where they are.
also rent a room and give it to the aunt. request that she uses it.
 

Fungamer80

Active Member
May 26, 2022
503
351
187
Can anybody help with this? Please and thank you
To fuck Bridgette you have to knock on her door a few times at night, eventually she will ask you for condoms and let you in.
For the threesome with Lil you just have to choose the couch if all other conditions are met.
 

Fungamer80

Active Member
May 26, 2022
503
351
187
you can use the phone and get location & time where they are.
also rent a room and give it to the aunt. request that she uses it.
I would love to do that, unfortunately she never shows up, so I can't interact with her. I've only seen her once, and at that point I didn't have my own room. She is supposed to show up on Sundays at 10am outside the hotel, unfortunately that is not the case for me....
 

rhcp725

Member
Jun 19, 2020
395
556
258
Sundays 11 am she should be in the parking lot of the motel. Talk to her and exercise with her after.
 

dikau

Member
Dec 16, 2019
319
287
186
I would love to do that, unfortunately she never shows up, so I can't interact with her. I've only seen her once, and at that point I didn't have my own room. She is supposed to show up on Sundays at 10am outside the hotel, unfortunately that is not the case for me....
Did you update your game to latest version? from changelog, v0.38.2 update is fixing the bug for the aunt.
 
  • Like
Reactions: Fungamer80

LLlkypa_XuTpa9

New Member
Jun 2, 2021
2
0
11
Guys, how to change Jill's status to girlfriend? I remember that it was possible during my previous run. Just dont remember right trigger. Current allure is 166. All tv, massage, shower, night events already drained. Threesomes with Mia in motel and club and with Lil after massage also done. Android ver.38.2 by estrada.
I was able to handle it myself. if anyone needs the correct answer in the future, it is to fuck jill after massage ALONE, BAREBACK, DO NOT CHANGE POSITION AND CUM INSIDE. Only after that the necessary dialog will appear and the status will change to girlfriend
 

Enki

New Member
Oct 12, 2017
4
1
96
So I had said that I had some code to hightlight the correct choices in the conversation and than I forgot about it. If people are still interested I will describe the changes bellow:

1) Change is in a file named PersonClass.rpy, replace a function called TalkAboutInterestsElemGenerator with the following code:
Python:
def TalkAboutInterestsElemGenerator(theme, value, person):
        showThemeHint = False
        state = False
        if value < InterestThreshold:
            hint = _("your knowledge about it is too low")
        elif theme in person.InterestsUsed.keys():
            hint = _("you have already talked about it")
            state = person.InterestsUsed[theme]
        elif person.TalkAboutInterestsIsBored():
            hint = _("{} bored").format(person.Alias)
        else:
            hint = ""
            state = True
            if theme in person.Interests.keys() and person.Interests[theme] > 0:
                showThemeHint = True
        return (state, showThemeHint, hint, person.TalkAboutInterestsAction)
2) In screen.rpy replace the function InterestLearnElemGenerator with:

Python:
def InterestLearnElemGenerator(theme, value):
        return ((Player.Interests[theme].DLearn != 0 and ThemesCounter < 3), false, theme, LearnInterestAction)
3) Also in screen.rpy replace line 1168 with

Python:
t_state, show_hint, mhint, func = gen_func(theme = thm, value = dv)
4) Now come the hardest part, in the same file at about line 1192 there should be an IF statement like "if t_state == True:".
Replace that with:

Python:
if t_state and show_hint:
    top_bar Frame("gui/bar/round_button.png")
    bottom_bar Frame("gui/bar/round_colored_button_hint.png")
elif t_state == True:
The rest of the code bellow should not be changed.

5) Add the image attached in the "game/gui/bar" folder.


Be aware to keep the spacing correct as python is sensitive to that stuff. For instance don't use TAB to add spaces, use Spaces instead.
Hope this works out. To apply there changes you need to decompile the game first of course.
 
  • Like
Reactions: jk11

MoLee

Newbie
Apr 15, 2022
72
61
117
It works...Thanks...minor typo:
2) In screen.rpy replace the function InterestLearnElemGenerator with:
Should be screens.rpy
 

MoLee

Newbie
Apr 15, 2022
72
61
117
[May help finding and replacing code; commented by # is the original code]

The following is for highlighting the correct choices in yellow in interest:

Add image round_colored_button_hint.png to game/gui/bar folder

PersonClass.RPY

def TalkAboutInterestsElemGenerator(theme, value, person):

# state = False
showThemeHint = False
state = False

# return (state, hint, person.TalkAboutInterestsAction)
if theme in person.Interests.keys() and person.Interests[theme] > 0:
showThemeHint = True
return (state, showThemeHint, hint, person.TalkAboutInterestsAction)


screens.RPY

def InterestLearnElemGenerator(theme, value):

# return ((Player.Interests[theme].DLearn != 0 and ThemesCounter < 3), theme, LearnInterestAction)
return ((Player.Interests[theme].DLearn != 0 and ThemesCounter < 3), false, theme, LearnInterestAction)

screen InterestTalkThemesFrame(gen_func, close_func, intext):

# t_state, mhint, func = gen_func(theme = thm, value = dv)
t_state, show_hint, mhint, func = gen_func(theme = thm, value = dv)

# if t_state == True:
if t_state and show_hint:
top_bar Frame("gui/bar/round_button.png")
bottom_bar Frame("gui/bar/round_colored_button_hint.png")
elif t_state == True:
 

krugeer

Member
Jul 10, 2020
171
42
149
For those looking for some hints (and also for those who already got everything and are willing to help me), I have attached an excel file with all female characters and all progresses I have found so far.
From what the game tells me, I am missing scenes on only 4 characters (Mary, Lit Teacher, Lauren and the Motel Manager). I might be missing some others as I have recently discovered the footjob with Brigitte which was supposed to be complete.

If you have any trouble achieving a progress, you just have to ask me with the name and the progress (or the line number), If I remember how, I'll tell you.

Update v38: It's a partial update of the file, I found some issues in the file (the sad thing using excel, when I missclick, I can end up messing the whole file). It's a partial update as I'm still missing three potential entries (I marked them). One with Kate, one with the Principal and one with the PE Teacher. It's more likely that I'm missing some others so if you have some that I don't have, don't hesitate to tell me how to get them.
Is there an update?
 

cmnb99

Newbie
Apr 25, 2023
19
0
28
Have the additional room. After defrauding the bank....make money....choose requests and the option is there
I have a room all the time, and when I defraud the bank, the maximum reward available is photography work, and there is no private room.. How do I make the room option available?
 
3.70 star(s) 206 Votes