Jaun Karr

Member
Mar 2, 2019
199
317
I am going to name Judy "Sex Trafficking Therapist". BTW I am going to try and recreate Linda in Daz and make a few edits to the in-game renders. LOL I will make a young Caroline and have her with Linda. "But I don't like Jeffery mommy, he's creepy. Why do I have to stay at his house tonight?" :ROFLMAO: :KEK::PogChamp:
I approve and endorse this action.
 
  • Haha
Reactions: Q Who

Q Who

Well-Known Member
Donor
May 16, 2017
1,718
1,788
The script to those scenes are in
game/scripts/wherever_the_scene_is_started/time_of_day_to_start_the_scene/scenes/abbreviation_for_character_version_and_scene_number.

So for example, the scene you took the picture from is in game/scripts/home/mc_room/night/scenes/ml_mc_room_night_scene3_v1.rpy

Generally, look for any folder that starts with "Ml" in the scripts folder.
You don't have permission to view the spoiler content. Log in or register now.
I have been through that script already. It was easier to edit the no patched path. I can't find the equivalent of the one that I quoted earlier.
 

ferdyfachrur

Member
Oct 24, 2019
155
42
What are you actually trying to do, by that I mean at what point in the game are you, and also how far have you progressed with the delectable (but "boozy") Caroline?.

Better still, just put your saved game file up, from the point you're at now, so we can look at it and tell you what you need to do.
This is my save file
 

Alpine Eagle

Russian Spy
Game Compressor
Donor
Apr 13, 2019
2,930
4,582
This is my save file
You're looking at the wrong walkthrough. You need to talk to her in the morning in her room, then in the evening in the living room, the next morning she will come to your room. These actions must be repeated several times.
You don't have permission to view the spoiler content. Log in or register now.
Ok, come on so
Morning - her room
Evening - living room
Morning - your room
Evening - living room
Morning - your room
Night - porch
 
Last edited:
  • Like
Reactions: ElmerFudd

ElmerFudd

Active Member
Sep 4, 2017
566
762
You're looking at the wrong walkthrough. You need to talk to her in the morning in her room, then in the evening in the living room, the next morning she will come to your room. These actions must be repeated several times.
You don't have permission to view the spoiler content. Log in or register now.
Ok, come on so
Morning - her room
Evening - living room
Morning - your room
Evening - living room
Morning - your room
Night - porch
Well that saved me going through it. Even if he's got a mod that highlight's the relevant chat... as well as a shedload of money. He's also got a lot more to do with "hidden cards" and going around humping all the other females. Shouldn't be that hard to do, especially with that mod in place too.
 
  • Like
Reactions: Alpine Eagle

ferdyfachrur

Member
Oct 24, 2019
155
42
Thank
You're looking at the wrong walkthrough. You need to talk to her in the morning in her room, then in the evening in the living room, the next morning she will come to your room. These actions must be repeated several times.
You don't have permission to view the spoiler content. Log in or register now.
Ok, come on so
Morning - her room
Evening - living room
Morning - your room
Evening - living room
Morning - your room
Night - porch
Thank You very much, finally i can continue my best girl story.

I watched walktrough on YouTube i think they skipped some steps
 
  • Like
Reactions: Alpine Eagle

goobdoob

Conversation Conqueror
Modder
Respected User
Dec 17, 2017
7,426
9,685
If you don't edit this line in the intro.rpy her name will revert to Linda during certain sections.

define Linda = Character("[Slutbag Linda_name]", color="#CC00CC")

You can't do replace all, which is an option in Notepad++ because of these types of lines of code. With Notepad++ I can replace every instance of "Linda" in an entire folder. But it breaks the coding and makes the game unbootable.

Movie(play="videos/Linda-EveningS3-Mouth6.webm", loop = True )

label CR3_MS0_label:
if renpy.loadable("patch.rpy"):
$ Linda_name = "Slutbag Linda"
$ Liza2_name = "Liza"


View attachment 537456
I can't find where to change it for the nighttime bedroom scenes.
View attachment 537457
The script to those scenes are in
game/scripts/wherever_the_scene_is_started/time_of_day_to_start_the_scene/scenes/abbreviation_for_character_version_and_scene_number.

So for example, the scene you took the picture from is in game/scripts/home/mc_room/night/scenes/ml_mc_room_night_scene3_v1.rpy

Generally, look for any folder that starts with "Ml" in the scripts folder.
You don't have permission to view the spoiler content. Log in or register now.
I have been through that script already. It was easier to edit the no patched path. I can't find the equivalent of the one that I quoted earlier.
You should install a grep tool. google gnuwin32.

His awesome :rolleyes: programmer changes it in MANY places:

scripts/home/salon/night/scenes/MLR2_NS1.rpy: $ Mom_name = "Linda"
scripts/home/mc_room/morning/scenes/C_R3_MS0.rpy: $ Mom_name = "Linda"
scripts/home/mc_room/night/scenes/CR4_NS1.rpy: $ Mom_name = "Linda"
scripts/home/ml_and_f_bedroom/morning/scenes/MLR3_MS1.rpy: $ Mom_name = "Linda"
scripts/home/ml_and_f_bedroom/night/scenes/NSB/ML_NS_sleep.rpy: $ Linda_name = Mom_name
scripts/gui/computer/scenes_gallery/scenes/SR2_ES1_rep.rpy: $ Mom_name = "Linda"
scripts/gui/computer/webcam_scenes/SR2_ES1.rpy: $ Mom_name = "Linda"
scripts/gui/computer/gallery_label.rpy: $ Mom_name = "Linda"
scripts/weekend_events/weekend_event_menu.rpy: $Mom_name = "Linda"
scripts/intro.rpy:define Linda = Character("[Mom_name]", color="#CC00CC")
scripts/intro.rpy: $ Mom_name = "Linda"
scripts/A_home/Outside/Entrance/M/a_home_outside_M.rpy: $ Linda_name = Mom_name
scripts/A_home/Inside/Living/M/scenes/Li_MAS2.rpy: $ Mom_name = "Linda"
scripts/A_home/Inside/Living/M/scenes/Li_MAS2.rpy: $ Mom_name = "Linda"

The command I used was:
grep -r Mom_name scripts | grep = | grep Linda
 

boxedjack

Member
Apr 23, 2017
446
1,220
You should install a grep tool. google gnuwin32.

His awesome :rolleyes: programmer changes it in MANY places:

scripts/home/salon/night/scenes/MLR2_NS1.rpy: $ Mom_name = "Linda"
scripts/home/mc_room/morning/scenes/C_R3_MS0.rpy: $ Mom_name = "Linda"
scripts/home/mc_room/night/scenes/CR4_NS1.rpy: $ Mom_name = "Linda"
scripts/home/ml_and_f_bedroom/morning/scenes/MLR3_MS1.rpy: $ Mom_name = "Linda"
scripts/home/ml_and_f_bedroom/night/scenes/NSB/ML_NS_sleep.rpy: $ Linda_name = Mom_name
scripts/gui/computer/scenes_gallery/scenes/SR2_ES1_rep.rpy: $ Mom_name = "Linda"
scripts/gui/computer/webcam_scenes/SR2_ES1.rpy: $ Mom_name = "Linda"
scripts/gui/computer/gallery_label.rpy: $ Mom_name = "Linda"
scripts/weekend_events/weekend_event_menu.rpy: $Mom_name = "Linda"
scripts/intro.rpy:define Linda = Character("[Mom_name]", color="#CC00CC")
scripts/intro.rpy: $ Mom_name = "Linda"
scripts/A_home/Outside/Entrance/M/a_home_outside_M.rpy: $ Linda_name = Mom_name
scripts/A_home/Inside/Living/M/scenes/Li_MAS2.rpy: $ Mom_name = "Linda"
scripts/A_home/Inside/Living/M/scenes/Li_MAS2.rpy: $ Mom_name = "Linda"

The command I used was:
grep -r Mom_name scripts | grep = | grep Linda
Oh wow, I changed the line in intro.rpy, jumped directly to Q Who's scene and didn't understand why I didn't have any problems. Makes sense now:ROFLMAO:
 

Kryapa

Newbie
Jun 9, 2019
82
171
I feel like icstor would get a lot less hate if he at least added something minor every other month. Just something in-between updates. For example the night scenes and wakeup scenes are all repetitive. Surely adding 1 extra night scene to random girl wouldn't take much and it'd at least give something to people. Like a new position, maybe throw in getting to bang one in the bath,etc. Lot of missed opportunities to add to the game without having to go ham creating entire new scenes/storylines.
Preparing release isn't a simple work that can be done at any minute. Your suggestion leads to maintaining separate branches at the very least. I think people disrespect ICSTOR mainly because he can't just stay tuned. If one regularly breaks deadlines, well it might be understadable, work is finished when it's finished. But surely he can post some renders or animations (like Auril3D) in his blog or maintain interest to the game in some other way.
 
  • Haha
Reactions: ElmerFudd

ElmerFudd

Active Member
Sep 4, 2017
566
762
Preparing release isn't a simple work that can be done at any minute. Your suggestion leads to maintaining separate branches at the very least. I think people disrespect ICSTOR mainly because he can't just stay tuned. If one regularly breaks deadlines, well it might be understadable, work is finished when it's finished. But surely he can post some renders or animations (like Auril3D) in his blog or maintain interest to the game in some other way.
Communications is not his forte, let alone giving animations as a sneak preview. He sometimes posts a render or two prior to release but that's about it. Over the past 18(?) months he's delayed the game a number of times and always comes up with excuses every time. That's what ticks people off! As a result he now refuses to give updates and says It's out when it's out.
Hardly inspiring stuff, especially if you happen to be a Patreon subscriber!
 

Xillonen

Member
Jan 2, 2020
181
159
You have to follow Celias route far enough and the game will prompt you to go and talk with the therapist.



You need the crowbar from your garage, use it on the window at night or evening I think.

I'm in the same boat. I can't progress with Celia.
I did the BJ gloryhole event, I went to her home, but I don't have the pussy gloryhole event option when using webcam.
I also did the security thing to erase the tapes.
Her apartment is always locked and says I need a key during the day and she is nowhere to be found.
Maybe I'm supposed to send her another item through the teacher's locker like the dildo ? Am I missing something?
I went through the 0.6e walkthrough and it doesn't help. :-/ any ideas ?

Edit: there is no option when visiting the therapist to talk to her about Celia either.
 
Last edited:

boxedjack

Member
Apr 23, 2017
446
1,220
...Over the past 18(?) months he's delayed the game a number of times and always comes up with excuses every time. That's what ticks people off!...
The most audacious (and amusing) part is he rarely feels the need to give excuses. Nearly everything is framed in a positive light, including delays. Even the "I was sick" part in the latest Q&A made it sound like him being sick was the reason he didn't write the Q&A earlier and that progress is not impacted.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
These are just the examples of the two delays 0.7 went through so far. The same was true for 0.6's delays.
If I had any hopes or illusions about him getting his act together after his big coming out post in November, they'd be quenched already.
 

armion82

Devoted Member
Mar 28, 2017
11,933
16,020
The most audacious (and amusing) part is he rarely feels the need to give excuses. Nearly everything is framed in a positive light, including delays. Even the "I was sick" part in the latest Q&A made it sound like him being sick was the reason he didn't write the Q&A earlier and that progress is not impacted.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
These are just the examples of the two delays 0.7 went through so far. The same was true for 0.6's delays.
If I had any hopes or illusions about him getting his act together after his big coming out post in November, they'd be quenched already.
Don't forget that the update first was delayed from October.
 
  • Like
Reactions: Aristos

Q Who

Well-Known Member
Donor
May 16, 2017
1,718
1,788
You should install a grep tool. google gnuwin32.

His awesome :rolleyes: programmer changes it in MANY places:

scripts/home/salon/night/scenes/MLR2_NS1.rpy: $ Mom_name = "Linda"
scripts/home/mc_room/morning/scenes/C_R3_MS0.rpy: $ Mom_name = "Linda"
scripts/home/mc_room/night/scenes/CR4_NS1.rpy: $ Mom_name = "Linda"
scripts/home/ml_and_f_bedroom/morning/scenes/MLR3_MS1.rpy: $ Mom_name = "Linda"
scripts/home/ml_and_f_bedroom/night/scenes/NSB/ML_NS_sleep.rpy: $ Linda_name = Mom_name
scripts/gui/computer/scenes_gallery/scenes/SR2_ES1_rep.rpy: $ Mom_name = "Linda"
scripts/gui/computer/webcam_scenes/SR2_ES1.rpy: $ Mom_name = "Linda"
scripts/gui/computer/gallery_label.rpy: $ Mom_name = "Linda"
scripts/weekend_events/weekend_event_menu.rpy: $Mom_name = "Linda"
scripts/intro.rpy:define Linda = Character("[Mom_name]", color="#CC00CC")
scripts/intro.rpy: $ Mom_name = "Linda"
scripts/A_home/Outside/Entrance/M/a_home_outside_M.rpy: $ Linda_name = Mom_name
scripts/A_home/Inside/Living/M/scenes/Li_MAS2.rpy: $ Mom_name = "Linda"
scripts/A_home/Inside/Living/M/scenes/Li_MAS2.rpy: $ Mom_name = "Linda"

The command I used was:
grep -r Mom_name scripts | grep = | grep Linda
I just wish I was as smart as you are to be able to use that :WeSmart: Thanks for the help. I appreciate it, however.
 
  • Like
Reactions: goobdoob

meedoeid

Member
Oct 22, 2019
159
165
Please help with caroline route.

She said is should meet her outside at night..i cant found her.

Already checke videoa on youtube and walktrough..but she is not outside and the place she should be when night outside .

Please help..thank you
Go to sleep and the option will appear
 

Evangelion-01

Devoted Member
Apr 12, 2018
10,385
6,956
Re: to add to this message (if anyone has any idea), is the max relationship you can get with the 3 characters a 5/5 or with some is it a 3/5 ? I'm asking because I'm not sure if the Harem ending is possible. I'm at 5/5 with Caroline but 3/5 with Sara and 3/5 with "mom".
Any feedback would be appreciated.
currently it's not, this outcome will depend on the hopefully currently developed Sarah Update (we still wait for proof as he keeps playing his delaying games once again) and a future Linda update.
I think current max are C 5/5, L 4/5 and S 3/5
 
  • Like
Reactions: Xillonen

OnY0ur6ix

Newbie
Jan 21, 2020
28
11
I got to the point of the game that offers me a Harem Route if I've achieved certain levels with the three ladies. I have those achievements yet it won't let me proceed. Suggestions?
 
3.70 star(s) 409 Votes