2.80 star(s) 41 Votes

Milkycatcow

New Member
Jul 19, 2023
9
0
35
Who is the old neighbor? Is it whe you go to the city? Or is it when you at home with your mother & father home?
 

dasdude

Newbie
May 6, 2017
22
39
216


IDK password or secret code
You don't need one.
Open up the browser console by pressing F12.
Make sure you're on the Console tab and type SugarCube.Engine.play("Intro").
Then press Enter and the story starts.

This also work for SmallTown.

And Society.
 
Last edited:

karasik97

New Member
Jan 21, 2023
1
0
37
You don't need one.
Open up the browser console by pressing F12.
Make sure you're on the Console tab and type SugarCube.Engine.play("Intro").
Then press Enter and the story starts.

This also work for SmallTown.

And Society.
It doesnt open dlc content(
 

dasdude

Newbie
May 6, 2017
22
39
216
I checked out the source code for SmallTown.
He did include it but locked it behind a variable check.
So if you do SugarCube.State.variables.cousinQuest=0 in the console, you can access the Cousin & Uncle DLC.

Hmm, you also need to set some variables yourself.
SugarCube.State.variables.uncle = {lust:0, corruption:0, relationship:0};
SugarCube.State.variables.cousin = {lust:0, corruption:0, relationship:0};
SugarCube.State.variables.cousinSexQuest=0;
This may not be all so expect some errors.
So you need to create the variables yourself, that are missing.
 
Last edited:

youraccount69

I'm like a karate chop
Donor
Dec 30, 2020
8,993
4,104
436
ProjectReeducation-1.36
You don't have permission to view the spoiler content. Log in or register now.
rpdl torrents are unaffiliated with F95Zone and the game developer.
Please note that we do not provide support for games.
For torrent-related issues use here, or join us on !
, . Downloading issues? Look here.​
 

Sodapoplagski

New Member
Aug 31, 2017
12
27
23
... Did the sleep sex events get removed? I tried to do them, but failed completely, and then I checked the code and found it literally doesn't even use the "sleepingSex" images.
 

Urbosa

Member
Aug 20, 2017
106
181
153
How does this work? Is the download already patched, or do I need to download both files and patch them myself?
 

wetness1603

New Member
Jul 11, 2023
6
19
81
He reworked the access to make it harder to do this.
copy paste this in the console instead:
Code:
SugarCube.State.variables.DLC1=true

SugarCube.State.variables.DLC2=true

SugarCube.State.variables.DLC3=true

SugarCube.State.variables.dlc3Code ="9<+>10=>21"

SugarCube.State.variables.dlc6Code ="10<+>9=>21"

SugarCube.State.variables.dlc9Code ="9<+>10=>21"
then you can use SugarCube.Engine.play("Intro") to start.
im not sure how to enable the dlc modifiers in the intro, but when you pick the age/family status and start, you should be able to use the Lore DLC intro.
Edit: im attaching a save file instead because i dont know how to get around getting stuck on a weekend day.
use the following js command to avoid having your corruption set to "NaN" whenever you or a family member gain corruption.
feel free to adjust the values if you wish:
JavaScript:
$(document).on(':passageend',()=>{SugarCube.State.variables.corruption=100;SugarCube.State.variables.father.corruption=100;SugarCube.State.variables.brother.corruption=100;SugarCube.State.variables.mother.corruption=100;});
 
Last edited:
2.80 star(s) 41 Votes