ThanksPassword for Liza's phone.
Up, Right, Down, Left.
You can't unlock it until you cover the screen, though.
----------------------------------------------------Yep it is incest but with a twist once I am close to finishing it I will be uploading it to here.. Also it will have 4 chapters to the story is will have a end so it will not go on and on like some games.
View attachment 1418891 View attachment 1418892 View attachment 1418893
You must prescribe each character's marital status: mom, sister, sister, sister, only then will it workAny idea when the "Taboo" mode will work? Cause Its still miss Anna, and "roommate" most of the time. Its kind of stupid that you can not stare at your roommate's ass... Its my roommate!
Nope, still brokenYou must prescribe each character's marital status: mom, sister, sister, sister, only then will it work
I did a real ghetto edit to the script.rpy file. I'm too drunk and lazy to try and debug it (Not to mention - I am not a coder!) so I just changed the variables to what I wanted. (Of Course, the first thing I did was back-up the script.rpy file somewhere safe!)Nope, still broken
define m = Character("m_name", color="#EFC6E1", dynamic=True)
define b = Character("Bob")
define m = Character("Mom", color="#EFC6E1", dynamic=True)
define b = Character("Your Choice")
init python:
game = MultiPersistent("BadBrotherSaga")
def set_taboo( status = False ):
game.is_taboo = status
game.save()
if game.is_taboo:
m_name = "Mom"
roommate = "sister"
bro = "brother"
son = "son"
sis = "sis"
else:
m_name = "Ms. Anna"
roommate = "roommate"
bro = "roommate"
son = "roommate"
sis = "roommate"
init python:
game = MultiPersistent("BadBrotherSaga")
def set_taboo( status = False ):
game.is_taboo = status
game.save()
if game.is_taboo:
m_name = "Mom"
roommate = "sister"
bro = "brother"
son = "son"
sis = "sis"
else:
m_name = "Mom"
roommate = "sister"
bro = "brother"
son = "son"
sis = "sis"
Hnmmm...followed your lead here and edited the script.rpy file (including "Find/Replace"). Seemed pretty straight forward, but when I go to start a new game, I get to the Patreon/SubscribeStar screen and then just a blank black screen. Any ideas where I f'd up?I did a real ghetto edit to the script.rpy file. I'm too drunk and lazy to try and debug it (Not to mention - I am not a coder!) so I just changed the variables to what I wanted. (Of Course, the first thing I did was back-up the script.rpy file somewhere safe!)
First, at the beginning of the script file, I changed the definitions for Anna and the MC.
From this...
to this...Code:define m = Character("m_name", color="#EFC6E1", dynamic=True) define b = Character("Bob")
Code:define m = Character("Mom", color="#EFC6E1", dynamic=True) define b = Character("Your Choice")
Next, in two areas near the beginning of the file is this code to define Taboo mode...
Code:init python: game = MultiPersistent("BadBrotherSaga") def set_taboo( status = False ): game.is_taboo = status game.save() if game.is_taboo: m_name = "Mom" roommate = "sister" bro = "brother" son = "son" sis = "sis" else: m_name = "Ms. Anna" roommate = "roommate" bro = "roommate" son = "roommate" sis = "roommate"
I just changed it to ...
Code:init python: game = MultiPersistent("BadBrotherSaga") def set_taboo( status = False ): game.is_taboo = status game.save() if game.is_taboo: m_name = "Mom" roommate = "sister" bro = "brother" son = "son" sis = "sis" else: m_name = "Mom" roommate = "sister" bro = "brother" son = "son" sis = "sis"
Then I did a Find & Replace of all instances of "m_name" to "m".
Finally, I searched for any text "Bobby" and changed it to the name I picked for the MC.
Seems to be good in the 5 mins I tested it so far. I'm sure there's probably some shit this won't cover but it seems to fix the dialogue, the text box labels and other, non-variabled scripts (such as the " do this, Bobby do that..."). It's basically hard coding over anything you pick when you start a new game, so it's not a fix... just a "band-aid" .. plus I hated being forced to play the MC with the name Bobby. Ugg!
EDIT: I see that there's all sorts of separate rpy files with their own scripts. So I've been manually just replacing all the instances of Bobby, m_name, roommate, etc with what I want. It's very dirty and a shame to the code, but it works.. lol. I used to make websites in HTML using nothing but a simple text editor.
I got to say though, the dialogue is cringe worthy. So many typing and grammar errors!
Hnmmm...followed your lead here and edited the script.rpy file (including "Find/Replace"). Seemed pretty straight forward, but when I go to start a new game, I get to the Patreon/SubscribeStar screen and then just a blank black screen. Any ideas where I f'd up?
Not at the moment sorry, my main focus is on adding content. As I want to change the interface to be more friendly for android as it designed more for PC.ANDROID????