StarCrafted
Newbie
- Jul 13, 2020
- 50
- 60
Howdy. I think I found a little bug.
At the hotel party, this code totally jumps over the questions (checked both the original RPAs and the Mod scripts, file 06_week6_01.rpy line 2645).
Both v_w6eow_s_talk_yuki and v_w6eow_s_talk_hotel have the "False" flag set at the beginning of the script. Checked with both True and False flags, the script will jump over said conversations to label lb_w6_eow_10_competitions_end directly:
Attached a save before the "jump lb_w6_eow_10_competitions_menu".
At the hotel party, this code totally jumps over the questions (checked both the original RPAs and the Mod scripts, file 06_week6_01.rpy line 2645).
Both v_w6eow_s_talk_yuki and v_w6eow_s_talk_hotel have the "False" flag set at the beginning of the script. Checked with both True and False flags, the script will jump over said conversations to label lb_w6_eow_10_competitions_end directly:
Code:
init:
$ v_w6eow_s_talk_yuki = False
$ v_w6eow_s_talk_hotel = False
Code:
label lb_w6_eow_10_competitions_menu:
if v_w6eow_s_talk_yuki and v_w6eow_s_talk_hotel:
jump lb_w6_eow_10_competitions_end
menu:
"Yuki" if v_w6eow_s_talk_yuki:
$ v_w6eow_s_talk_yuki = True
...
jump lb_w6_eow_10_competitions_menu
"The Hotel" if v_w6eow_s_talk_hotel:
$ v_w6eow_s_talk_hotel = True
...
jump lb_w6_eow_10_competitions_menu
Code:
label lb_w6_eow_10_competitions_end:
show sc w6scow s15
woman "Excuse me?"
...
Last edited: