Q Who

Well-Known Member
Donor
May 16, 2017
1,718
1,788
I didn't understand it myself, but no, I'm not a woman.
I guess he meant that the "variety" is of babe games. I can only see a woman liking this game because Slutbag Linda is a pursuer.

Does anyone know which file has the script to set (Slutbag)Linda's name? LOL, I want to give her the correct name in the text window. Slutbag Linda of course.
 

goobdoob

Conversation Conqueror
Modder
Respected User
Dec 17, 2017
7,425
9,683
I guess he meant that the "variety" is of babe games. I can only see a woman liking this game because Slutbag Linda is a pursuer.

Does anyone know which file has the script to set (Slutbag)Linda's name? LOL, I want to give her the correct name in the text window. Slutbag Linda of course.
Linda's actor is "Mom", defined in scripts/intro.rpy:
define Mom = Character("[Mom_name]", color="#CC00CC")
Mom_name is defined in script.rpy:
Code:
default Mom_name = "Mom"
...
label day_time_changer:
    if renpy.loadable("patch.rpy"):
        $ Mom_name = "Mom"
        $ Dad_name = "Dad"
    if not renpy.loadable("patch.rpy"):
        $ Mom_name = "Linda"
        $ Dad_name = "Bob"
Some places "Linda" is hardcoded. You'll just have to live without having people call her "Slutbag Linda":
Sara "Linda grounded me, remember? I’m not allowed to leave the house."
This happens a lot.

You can change her name everywhere it's not hardcoded by opening the console and typing
Mom_name = "Slutbag Linda"

There are many others you can change like this, such as Caroline_name, Sara_name, Judy_name, Celia_name, player_name.
screenshot0001.png screenshot0004.png screenshot0002.png screenshot0003.png screenshot0005.png screenshot0007.png
 

Evangelion-01

Devoted Member
Apr 12, 2018
10,363
6,935
I guess he meant that the "variety" is of babe games. I can only see a woman liking this game because Slutbag Linda is a pursuer.

Does anyone know which file has the script to set (Slutbag)Linda's name? LOL, I want to give her the correct name in the text window. Slutbag Linda of course.
that would require him to use variables in every dialogue... consdering the repeated miss labeled dialogue boxes it's highly unlikely that he took that effort... sadly... would have loved to get BitchyCelia... or BitchCilla in the game :p
 

ferdyfachrur

Member
Oct 24, 2019
155
41
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
 

Evangelion-01

Devoted Member
Apr 12, 2018
10,363
6,935
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
try to interact with the MCs bed
 

Q Who

Well-Known Member
Donor
May 16, 2017
1,718
1,788
Linda's actor is "Mom", defined in scripts/intro.rpy:
define Mom = Character("[Mom_name]", color="#CC00CC")
Mom_name is defined in script.rpy:
Code:
default Mom_name = "Mom"
...
label day_time_changer:
    if renpy.loadable("patch.rpy"):
        $ Mom_name = "Mom"
        $ Dad_name = "Dad"
    if not renpy.loadable("patch.rpy"):
        $ Mom_name = "Linda"
        $ Dad_name = "Bob"
Some places "Linda" is hardcoded. You'll just have to live without having people call her "Slutbag Linda":
Sara "Linda grounded me, remember? I’m not allowed to leave the house."
This happens a lot.

You can change her name everywhere it's not hardcoded by opening the console and typing
Mom_name = "Slutbag Linda"

There are many others you can change like this, such as Caroline_name, Sara_name, Judy_name, Celia_name, player_name.
View attachment 536981 View attachment 536989 View attachment 536986 View attachment 536987 View attachment 536991 View attachment 536998
Well LOL. I spent a little extra time using Notepad++.

Milfy_City_2020_02_01_22_56_23_967.png Milfy_City_2020_02_01_22_56_47_272.png

I can't find where the MC bedroom variable is. In the intro script, there is a line that "defines" "Linda" in addition to the script you mentioned. Her name is defined in a bunch of areas. It is fairly easy to do with Notepad++. I just search for "Linda" and have the replace line filled out with Slutbag Linda. Unfortunately, you cannot replace all since her name(and mom) are part of scripts. I spent about 30 minutes and almost finished editing all of the scripts. I edited some of the dialogs and hover names just for shits and giggles.

LOL Gremlin, classic! 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:
 
Last edited:

goobdoob

Conversation Conqueror
Modder
Respected User
Dec 17, 2017
7,425
9,683
Well LOL. I spent a little extra time using Notepad++.

View attachment 537429 View attachment 537430

I can't find where the MC bedroom variable is. In the intro script, there is a line that "defines" "Linda" in addition to the script you mentioned. Her name is defined in a bunch of areas. It is fairly easy to do with Notepad++. I just search for "Linda" and have the replace line filled out with Slutbag Linda. Unfortunately, you cannot replace all since her name(and mom) are part of scripts. I spent about 30 minutes and almost finished editing all of the scripts. I edited some of the dialogs and hover names just for shits and giggles.
What do you mean, "MC bedroom variable"?

What you want is a utility called sed. It will let you replace all instances of "Linda" with "Slutbag Linda" in a list of files you give it.

 
  • Like
Reactions: Q Who

Q Who

Well-Known Member
Donor
May 16, 2017
1,718
1,788
What do you mean, "MC bedroom variable"?

What you want is a utility called sed. It will let you replace all instances of "Linda" with "Slutbag Linda" in a list of files you give it.

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"


Milfy_City_2020_02_01_23_36_03_753.png
I can't find where to change it for the nighttime bedroom scenes.
Milfy_City_2020_02_01_23_36_39_528.png
 
Last edited:
  • Like
Reactions: asd33asd33

dirtythiccboi

Member
Aug 7, 2019
125
419
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.
 
Last edited:
3.70 star(s) 406 Votes