- Sep 29, 2023
- 572
- 870
eolostudios There's a small bug in chapter 13.
This variable isn't instantiated, if you don't earn any points with Hikari, the following screen appears:
This bug triggers again in Chapter 15, in the bathroom stall with Hikari.
Edit:
I ran into a second bug, this time with Sayumi.
My MC didn't tell her about the vision in Chapter 14, yet ends up in her bed at the start of Chapter 15. According to the walkthrough, this shouldn't happen.
Looking through the code, the issue seems to be:
The mp.variable defaults to null, so none of the if statements trigger, and 'label ch15GMYumi' is called. Easiest fix is to add $ mp.chap14flag = 1, after the if statement in Chapter 14, or check for ch14TellYumiflag as well in Chapter 15.
Code:
if mp.hikari_points >= 2:
i "{i}(I want her to be mine and mine alone.)"
This bug triggers again in Chapter 15, in the bathroom stall with Hikari.
You don't have permission to view the spoiler content.
Log in or register now.
Edit:
I ran into a second bug, this time with Sayumi.
My MC didn't tell her about the vision in Chapter 14, yet ends up in her bed at the start of Chapter 15. According to the walkthrough, this shouldn't happen.
Looking through the code, the issue seems to be:
Code:
# Chapter 14
if mp.ch14TellYumiflag == 2:
scene c14s687 with dissolve
s "Thank you again, I’m going to take a shower and hit the hay. "
i "No problem, goodnight."
# Chapter 15
if mp.chap14flag10 == 2:
jump ch15GMYumi
if mp.chap14flag == 1:
jump ch15GMDice2
label ch15GMYumi:
You don't have permission to view the spoiler content.
Log in or register now.
Last edited: