- Dec 17, 2017
- 7,426
- 9,701
In Python,I'm using the bugfix from op.
Another one, I'm not sure about: After the dinner scene mentioned above, according to "chapter11.rpy" line 317-427 you should see a scene with Anne at the plane, which is triggerd by
but this one doesn't appear (although after setting "$ martincheat = True" in init of chapter11.rpy). Changing the trigger toCode:if martincheat: ... else ...
works like charm ;-) (variable $ martincheat = False was initialised in chapter07.Code:if martincheat == True:
A quick peek into the rpy's of the other chapters shows the "if xyz: ... else" very often. Might this be a reason for scenes in prvious chapter that seems to have been triggered but doesn't appear?
if martincheat:
and
if martincheat == True:
are the same thing (assuming martincheat is a boolean).
"Talk with Kelsey" if kelsey == True:If the variable kelsey is true or if the variable v11_kelsey ist true? ($ v11_kelsey is initialised in chapter11 while $ kelsey was initialised in chapter 10)
I thought the "if kelsey" must be the check if you had lunch with her in chapter 10 (where $ kelsey was set from False to True) i.e.
I'm sorry to start a mess, might be a brainfuck in late hoursCode:"Talk with Kelsey" if kelsey == True: $ v11_kelsey = True
![]()
will show the menu option if the variable kelsey is True.
The line after it sets v11_kelsey to True.