- Feb 1, 2022
- 308
- 1,141
While going through the code (trying to write a walkthough, damn you have many branches and qualifiers^^), i noticed a scene in chapter 2 that can never happen:
in chapter2, the else option in line 8825 can never be reached, since it would require
However, in chapter1 the variable ch1_guy_number is always true (you cannot skip the meeting with Guy, and you cannot refuse his number, only full commitment to attendance)
Therefore, the scene for with Anthony between line 8825 and 8882 never plays out.
I understand that's probably an intentional removal, but maybe you could add a "no" option in ch1 where Evelyn answers something like "Pity, give me your number in case she reconsiders" for ch1_going_to_the_gala_night == False and ch1_guy_number == False.
Then in ch2 line 8882 you could add a Evelyn text convincing myriam about going to the gala, and she accepts to take the stress (or similar) so no excessive changes or new scenes would be required...
in chapter2, the else option in line 8825 can never be reached, since it would require
Code:
ch1_going_to_the_gala_night == False and ch1_guy_number == False
Therefore, the scene for with Anthony between line 8825 and 8882 never plays out.
I understand that's probably an intentional removal, but maybe you could add a "no" option in ch1 where Evelyn answers something like "Pity, give me your number in case she reconsiders" for ch1_going_to_the_gala_night == False and ch1_guy_number == False.
Then in ch2 line 8882 you could add a Evelyn text convincing myriam about going to the gala, and she accepts to take the stress (or similar) so no excessive changes or new scenes would be required...