There's a logic error.
Idk if from 0.5 or 0.6 cause I skipped 0.5.
It's in the code at the end of the barfight scene:
" elif drunk and win and karma >=3:" <- this will never get executed cause the previous condition " if drunk and win:" will always be true in that case.
'elif' is only executed if the previous 'if' is false.
If win & drunk are true, & you have 3+ karma, the 1st condition " if drunk and win:" will execute (cause drunk & win is true) & therefore " elif drunk and win and karma >=3:" will not execute, despite having 3+ karma, cause the "if" statement was true, ending the conditonal.
If win or dunk are not true, neither statement will execute.
Hence the second condition will
never get executed.
With code like this containing the same variables, put the condition with more variables at the top. I.e. the code should be:
Code:
if drunk and win and karma >=3:
<code>
elif drunk and win:
<code>
Another option is possible since the dialogue is same for both options. I.e.:
Code:
if drunk and win:
hu "But I noticed you sneaked a few drinks during it. That's not really a good attitude. I'll overlook it this time, cause you handled that incident very well. but I hope it doesn't happen again if you want to keep working here."
hu "There's your pay. I should get ready for my day job."
$ money += 1
if karma >=3:
$ money += 1
elif drunk and lose:
Hope it helps.
Keep up the good work
told her I didn't just do it because of the job when she asked...
Try the other option & see what she says.
I will add a choice on the character relationship next version.
A option to define the nicknames would be good too.
I don't mind the step-niece setup, the lines like "You're not my family, Keren." actually feel unique to me after every other game going for the same copy paste incest setups.
The (1st version) setup of "MC's real brother's step daughters" felt pretty original, going for neither full denial (no blood relation, swear on my Patreon) nor full incest (everyone is related, 100%).
However the girls not calling the MC Uncle feels weird (they do call him uncle, it's just kinda inconsistent sometimes), since they keep bringing up the family relation (which the MC then rebutts with lines like "You're the daughter of the woman Steve is married to.")
Feels like they (the nieces & their mom) should play up the family relation more as part of their character setting & calling MC uncle seems like something they'd do for that purpose, despite MC's rebuttals.
Anyway, hope I can have "daughter of the woman my brother is married to, who keep calling me Uncle" as a unique setting
Yeah nothing is set on the stone i'm waiting for patreon anshwer maybe in the final version i can change.
For Patreon concerns just use a patch file.
Even after making Steve friend instead of brother, a 3some with Kara+Keren will be flagged as incest by Patreon cause it's a sexual act involving family members (sisters/mothers/daughtes).
Same for possible content with other related characters like the student(Mori)'s family.
Removing the 'Daddy vs Mommy' dialogues for them would be such a shame.
Patch file let's you do what you want, since it's 'unofficial' changes done by DefinitelyNotTheDev *winkwink*