Hey
AbrokenA Productions, found a couple of nasty bugs in the code that don't seem to have been reported yet. One of them I've come across during my playthrough, the other one I located by searching specifically for it.
The one I stumbled upon in the game manifests during the box of chocolates event, specifically when you choose a menu option that says "Because she's your friend". The code that handles the choice is apparently supposed to increase Elly's points using the
+=
operator. There's a typo on that line though and the operator looks like
=+
instead, which is a completely different beast. Rather than
increasing Elly's RP by 1, it
sets them to 1.
The other one is similar, only it's a mistyped
-=
. I found it by looking specifically for
=-
in scripts.rpa, just to check. From what I saw in that fragment, it's a point in the game I haven't reached yet, but it looks like an event with Nicole (more specifically, it's under
label nicole04_20
).
I didn't unpack the .rpa, so don't know which .rpy contains which error, but I believe the bugs can be found easily by searching the source files for
=+
and for
=-
.