Post by Ardanis on Apr 19, 2016 17:09:41 GMT -8
Several issues I noticed when checking the game files to make sure I didn't accidentally miss something. Played Asaga, Chigara and Sola routes, no Ava.
m1w4_solapool
No calls to it whatsoever, apart from debug.
m3w3_eldersday
From events.rpy:
The "meetasaga_eldersday" check should be removed, because it turns false at the end of Asaga event in dayloops.rpy and blocks "m3w3_eldersday" from ever showing up.
Unrelated to the above issue, from script.rpy:
The actual luck stat is not modified.
m4_bednosleep
I had this event on M4W2D8 (just before kendo tournament). After it played out, I got "What a busy day..." message - despite it already being the morning, - followed by "There's a kendo tournament today." and the day went as usual. However, once the activities concluded, instead of sleeping the day replayed itself, i.e. I got another kendo message followed by another tournament - at H7 no less!
I managed to fix it by commenting out this line in script.rpy:
Probably not how it should be fixed, though... I still got the redundant "What a busy day..." message at the end of event, but other than that everything seems to have gone smoothly, no duplicate kendo tournament in the middle of the night.
m5_solafinalexams
Script.rpy:
Should be "hour > 5". Otherwise it's a black screen.
m1w4_solapool
No calls to it whatsoever, apart from debug.
m3w3_eldersday
From events.rpy:
if month == 3 and week == 3 and day == 4 and meetasaga_eldersday == True and eldersdaypresent == True:
jump m3w3_eldersday
jump m3w3_eldersday
The "meetasaga_eldersday" check should be removed, because it turns false at the end of Asaga event in dayloops.rpy and blocks "m3w3_eldersday" from ever showing up.
Unrelated to the above issue, from script.rpy:
"Good Karma Gained! (+5 Luck)"
The actual luck stat is not modified.
m4_bednosleep
I had this event on M4W2D8 (just before kendo tournament). After it played out, I got "What a busy day..." message - despite it already being the morning, - followed by "There's a kendo tournament today." and the day went as usual. However, once the activities concluded, instead of sleeping the day replayed itself, i.e. I got another kendo message followed by another tournament - at H7 no less!
I managed to fix it by commenting out this line in script.rpy:
$ nightskip = True
Probably not how it should be fixed, though... I still got the redundant "What a busy day..." message at the end of event, but other than that everything seems to have gone smoothly, no duplicate kendo tournament in the middle of the night.
m5_solafinalexams
Script.rpy:
scene black with horizontalwipe
if hour <= 5:
scene bg library with horizontalwipe
if hour > 6:
scene bg library_night with horizontalwipe
if hour <= 5:
scene bg library with horizontalwipe
if hour > 6:
scene bg library_night with horizontalwipe
Should be "hour > 5". Otherwise it's a black screen.