Pretty sure that means "step." Cheating with wife's sister is plenty in mainstream movies/books/etc at least since the 1970s, of course better safe than sorry and Patreon can be very extreme.Also according to F95 Tag Definitions:
https://f95zone.to/threads/tags-rules-and-list-updated-2021-05-02.10394/
- Incest [Sex act between family relatives, including those not related by blood.]
You mean the Bush poke through You should have seen it in person... It is a big part of the story also.The blonde has some serious trouble with her underwear. ^^
Well Shitt....... Spell check didn't catch of course. Thanks...Hay, I mean Hey All the Heys are spelled, Hay. What Hayseed wrote this script
I didn't say that out loud did I..... The leadup is being laid out a little here in the Intro...You mean the Bush poke through You should have seen it in person... It is a big part of the story also.
I did not add that , but on the first page there is a MOD that does, I may look into that.. So much to learn yet... First page post #12can you change the MC name?
I like itThe Sister in Law [v0.01 Beta] - WT Mod v0.1
I've made a Walkthrough Mod (even though it's not really needed) that highlights the best choice in green.
I've also added a character renamer for the MC (for those that do not want to be known as Bill)
Download: WorkUpload
in your script.rpy you just need to change this:I like it
Could you send me info or a text file with the Name Change so I may add it. I know a strange request, but I'm not even a Newbie more like Pre,Pre-K
define be = Character("Becky")
define b = Character("Bill")
define br = Character("Brenda")
define d = Character("Deb")
# The game starts here.
label start:
# Show a background. This uses a placeholder by default, but you can
# add a file (named either "bg room.png" or "bg room.jpg") to the
# images directory to show it.
scene bg room
define be = Character("Becky")
define b = Character("")
define br = Character("Brenda")
define d = Character("Deb")
# The game starts here.
label start:
# Show a background. This uses a placeholder by default, but you can
# add a file (named either "bg room.png" or "bg room.jpg") to the
# images directory to show it.
$ b = renpy.input("What is your name? (Default: Bill)", exclude='{0123456789/*-+.`~!@#$%^&*()_+-=[];\,<>?:|/}')
if b == "":
$ b = "Bill"
scene bg room
b "Hi. I am Bill. I am married to Becky, and she has two younger sisters."
b "Hi. I am [b]. I am married to Becky, and she has two younger sisters."
Thanks, just hope I can remember to use and not spell it out. I am a slow learner ya know...in your script.rpy you just need to change this:
To this:Code:define be = Character("Becky") define b = Character("Bill") define br = Character("Brenda") define d = Character("Deb") # The game starts here. label start: # Show a background. This uses a placeholder by default, but you can # add a file (named either "bg room.png" or "bg room.jpg") to the # images directory to show it. scene bg room
And then every time the word Bill is mentioned in the dialog, you need to change it to [ b ] (without the space either side of the b)Code:define be = Character("Becky") define b = Character("") default b = "Bill" define br = Character("Brenda") define d = Character("Deb") # The game starts here. label start: # Show a background. This uses a placeholder by default, but you can # add a file (named either "bg room.png" or "bg room.jpg") to the # images directory to show it. $ b = renpy.input("What is your name? (Default: Bill)", exclude='{0123456789/*-+.`~!@#$%^&*()_+-=[];\,<>?:|/}') if b == "": $ b = "Bill" scene bg room
As an example, the first line shows as:
Should then be made like this:Code:b "Hi. I am Bill. I am married to Becky, and she has two younger sisters."
Code:b "Hi. I am [b]. I am married to Becky, and she has two younger sisters."
Well you don't have to use [ b ], you can do something like this:Thanks, just hope I can remember to use and not spell it out. I am a slow learner ya know...
define be = Character("Becky")
define player = Character("")
define br = Character("Brenda")
define d = Character("Deb")
# The game starts here.
label start:
# Show a background. This uses a placeholder by default, but you can
# add a file (named either "bg room.png" or "bg room.jpg") to the
# images directory to show it.
$ player = renpy.input("What is your name? (Default: Bill)", exclude='{0123456789/*-+.`~!@#$%^&*()_+-=[];\,<>?:|/}')
if player == "":
$ player = "Bill"
scene bg room
pause
scene bill intro
player "Hi. I am [player]. I am married to Becky, and she has two younger sisters."