This will hopefully be my last question before the launch of the VN .
In the early part of the VN the player has 3 yes/no choices to make. I want to remember if the player chose Yes to any of those. So I have:
And I have that 3 times, so if any of the choices is Yes, then yes_choice should be true. Now I introduce Character 4 and ask the same question. If you say Yes for her OR for any of the other characters, I want to jump to the yes_screen. If Character 4 is a no but any of the 1-3 characters is a yes, I want to go to the yes_screen. Only if all characters are no do I want to bypass the yes_screen.
I thought I could do it like this,:
But in testing, when I select No for everyone, it returns an error "yes_choice is not defined".
In the early part of the VN the player has 3 yes/no choices to make. I want to remember if the player chose Yes to any of those. So I have:
Python:
menu:
"Yes":
$ yes_choice = "true"
jump somewhere
"No":
jump somewhere2
I thought I could do it like this,:
Python:
menu:
"Yes":
jump yes_screen
"No":
if yes_choice== "true":
jump yes_screen
else:
jump somewhere3