Yes I will and thank you in advance.You should also create a Subscribestar account for those of us who are anti-patreon. Previews are looking good, if I like it, I'll consider supporting, btw will you be open to scene suggestions from your supporters?
Did someone sayDrop the "Step" shit and just make it "mother's love" with an incest patch
$ w1name = renpy.input("Enter your older housemate's name.")
$ w1name = w1name.strip()
if not w1name:
$ w1name = "Adrianna"
$ w1role = renpy.input("[w1name] is your...")
$ w1role = w1role.strip()
if not w1role:
$ w1role = "boss's wife" #roommate, landlady, etc.
"[w1role]."
#example text:
MC "*What am I thinking... She's my [w1role].*"
scene black
with fade
"After visiting the house, [w1name] shows you the room you'll be leaving in
for the next few years."
I'll take care of that, maybe a flowchart in the future.Game says choices mather but we dont have any walkthrough? I mean why? Its weird...
THX!! =DDid someone sayYou must be registered to see the links
@nexTGen
If you impliment a nickname/title system you can let people who want incest to indulge without a patch while still steering clear of Patreon's censors.
Refer to characters in the script with variables instead of by name and title. ei:
In this example the MC's first line would say "She's my boss's wife." by default or "She's my mother." for the people who want that.Python:$ w1name = renpy.input("Enter your older housemate's name.") $ w1name = w1name.strip() if not w1name: $ w1name = "Adrianna" $ w1role = renpy.input("[w1name] is your...") $ w1role = w1role.strip() if not w1role: $ w1role = "boss's wife" #roommate, landlady, etc. "[w1role]." #example text: MC "*What am I thinking... She's my [w1role].*" scene black with fade "After visiting the house, [w1name] shows you the room you'll be leaving in for the next few years."