neronwtf

Well-Known Member
Nov 12, 2019
1,000
895
169
for this, what am I actually supposed to do. My relationship with her is at 40%, I got into the fight in school trying to protect her, and I also agreed to the walk with her, but what am I actually supposed to do to get this to progress and how do I go on the walk with her? View attachment 2024873
At home, you can help her with her homework at noon and specially play at the pool with her along with her friend. Guess that you already spend time at school, maybe try to talk to her in the corridor.
You walk with her at the park
 

Wafflewaffuru

Active Member
Feb 10, 2021
743
1,375
173
At home, you can help her with her homework at noon and specially play at the pool with her along with her friend. Guess that you already spend time at school, maybe try to talk to her in the corridor.
You walk with her at the park
I had to wait for her to text me to tell me when to meet her there. That was kinda dumb lol. It was random and happened like 4 days in game later
 

indio68

Forum Fanatic
Sep 26, 2020
4,634
4,171
387
why minigames are impossible to beat?? boith puzzle and sex fight games are impossible...just like that...
 

Basmu

Newbie
Feb 26, 2021
90
102
131
I'm trying to open console command with "shift+O" but nothing happen, someone can tell me why ?
 

Bobbycanfly

Member
Sep 8, 2021
174
373
187
So I was outside in the rain and now my screen looks like it has cum all over it. And it wont go away. lol

EDIT
NM I figured it out.
 

boraxkarloff

Member
Jan 25, 2018
435
663
281
there is no patch to change mc name and relationships ?
Unfortunately the way the dev wrote the script it's impossible to do an easy patch. The whole script would have to be gone through to replace a name with mom or aunt. In a few instances he used [sJulia.name] which would be easy to change for a patch. You should be able to change the mc's name.
 
  • Like
Reactions: Basmu

luvsabunch86

Member
Jun 3, 2018
101
108
246
Haven't played the start of this game for a while so I must have manually changed mc's name in the console. I think it's sRocky.name = u'whatever your name is' and hit enter.
Actually it is:

sRocky.name = "yourName"
sRockyT.name = "yourName"
sRockyLE.name = "yourName"
sRockyP.name = "yourName"

Yes, you need to change all four and and no u in front of the quotes. If you look at the original post, it was posted by the author of Area69 (k78Games). And yes, it still works under the current v0.74.
 

cooperdk

Engaged Member
Jul 23, 2017
3,753
5,552
714
Disgusting. Hidden NTR.
Not cool bro, waking in the night to find that your mom(?) fucked by vampire.
Set NTR tag, if i saw one then don't bother download it in first place.
UHM. Someone having sex with your MOM is NOT NTR. Get your facts straight. NTR is someone fucking your steady girlfriend or wife.

there is no patch to change mc name and relationships ?
Make a text file named _inc_patch.rpy containing:

init 1040 python:
def nameChange( txt ):
#Julia -> Mom
if ("sRockyT" in txt) and ("sJulia" in txt):
sJulia.name = "Mom"
return txt.replace("sJulia","sJulia")
elif ("sRocky" in txt) and ("sJulia" in txt):
sJulia.name = "Mom"
return txt.replace("sJulia","sJulia")
elif ("sRockyT" in txt) and ("Julia" in txt):
return txt.replace("Julia","Mom")
elif ("sRocky" in txt) and ("Julia" in txt):
return txt.replace("Julia","Mom")
#Lucy -> Sis
elif ("sRockyT" in txt) and ("sLucy" in txt):
sLucy.name = "Sis"
return txt.replace("sLucy","sLucy")
elif ("sRocky" in txt) and ("sLucy" in txt):
sLucy.name = "Sis"
return txt.replace("sLucy","sLucy")
elif ("sRockyT" in txt) and ("Lucy" in txt):
return txt.replace("Lucy","Sis")
elif ("sRocky" in txt) and ("Lucy" in txt):
return txt.replace("Lucy","Sis")
#Emma -> Aunt
elif ("sRockyT" in txt) and ("sEmma" in txt):
sEmma.name = "Aunt Emma"
return txt.replace("sEmma","sEmma")
elif ("sRocky" in txt) and ("sEmma" in txt):
sEmma.name = "Aunt Emma"
return txt.replace("sEmma","sEmma")
elif ("sRockyT" in txt) and ("Emma" in txt):
return txt.replace("Emma","Aunt Emma")
elif ("sRocky" in txt) and ("Emma" in txt):
return txt.replace("Emma","Aunt Emma")
#Sara -> Grandma
elif ("sRockyT" in txt) and ("sSara" in txt):
sSara.name = "Grandma Sara"
return txt.replace("sSara","sSara")
elif ("sRocky" in txt) and ("sSara" in txt):
sSara.name = "Grandma Sara"
return txt.replace("sSara","sSara")
elif ("sRockyT" in txt) and ("Sara" in txt):
return txt.replace("Sara","Grandma Sara")
elif ("sRocky" in txt) and ("Sara" in txt):
return txt.replace("Sara","Grandma Sara")
#Olivia Cousin
elif ("sRockyT" in txt) and ("sOlivia" in txt):
sOlivia.name = "Cousin Olivia"
return txt.replace("sOlivia","sOlivia")
elif ("sRocky" in txt) and ("sOlivia" in txt):
sOlivia.name = "Cousin Olivia"
return txt.replace("sOlivia","sOlivia")
elif ("sRockyT" in txt) and ("Olivia" in txt):
return txt.replace("Olivia","Cousin Olivia")
elif ("sRocky" in txt) and ("Olivia" in txt):
return txt.replace("Olivia","Cousin Olivia")
#Walter Uncle
elif ("sRockyT" in txt) and ("sWalter" in txt):
sWalter.name = "Uncle Walter"
return txt.replace("sWalter","sWalter")
elif ("sRocky" in txt) and ("sWalter" in txt):
sWalter.name = "Uncle Walter"
return txt.replace("sWalter","sWalter")
elif ("sRockyT" in txt) and ("Walter" in txt):
return txt.replace("Walter","Uncle Walter")
elif ("sRocky" in txt) and ("Walter" in txt):
return txt.replace("Walter","Uncle Walter")
else:
return txt

config.say_menu_text_filter = nameChange



you know you can use unren to get the rpy files right?
That would be unrpyc and not unren unless that includes unrpyc.
 
3.90 star(s) 112 Votes