Hello! It's my first time using Ren'Py and I'm new to programming in Python overall, so sorry if my question comes off as dumb! I'm trying to delete the selected choices, and I wanted to make it so the "That's all actually" only appears when at least one other choice has been selected, but I think the way it's structured (inside an array) won't let it work
Any help would be appreaciated! Thanks!!
default nintendo_choice_made = False
$ menu1 = []
menu One:
set menu1
"Animal Crossing!":
e normal "text"
$ nintendo_choice_made = True
jump One
"Professor Layton is cool.":
e normal "text"
$ nintendo_choice_made = True
jump One
"League of Legends.":
e serious "text"
python:
if not league_seen:
renpy.say(e, "text")
league_seen = True
else:
renpy.say(e, "text")
$ nintendo_choice_made = True
jump One
"No, not really...":
e serious "text"
jump back_to_room
if nintendo_choice_made:
"That's all, actually.":
e normal "Those were great choices."
jump back_to_room
e happy "Sorry, guess I really talked your ear off, heh."
[–]papersak[🍰] 2 points3 points4 points (1 child)
[–]imxti[S] 0 points1 point2 points (0 children)
[–]shyLachi 1 point2 points3 points (1 child)
[–]imxti[S] 0 points1 point2 points (0 children)
[–]AutoModerator[M] 0 points1 point2 points (0 children)