Search found 4 matches

by tuts
Tue Mar 15, 2022 12:59 pm
Forum: Ren'Py Questions and Announcements
Topic: Dialogue option list of 5 topics that ends after you ask 3 - how?
Replies: 7
Views: 402

Re: Dialogue option list of 5 topics that ends after you ask 3 - how?

2. it is indented in my code, I forgot to make it so here! what do you mean "jumps" do nothing? don't they allow to jump from one point of code to another if something is selected, depending on the use in the code? so if a player picks some dialogue option that triggers a new scene, I can ...
by tuts
Sun Mar 13, 2022 1:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Dialogue option list of 5 topics that ends after you ask 3 - how?
Replies: 7
Views: 402

Re: Dialogue option list of 5 topics that ends after you ask 3 - how?

So far the code for this bit is as follows: menu: "CH1": ch1 "let's go!" jump CH1_Q label CH1_Q default question_set = set() while len(question_set) < 3: menu: set question_set "Choose your question:" "Q1" CH1 "reply" pass "Q2" CH1 "re...
by tuts
Sun Mar 13, 2022 1:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Dialogue option list of 5 topics that ends after you ask 3 - how?
Replies: 7
Views: 402

Re: Dialogue option list of 5 topics that ends after you ask 3 - how?

You can use meu set: https://www.renpy.org/doc/html/menus.html#menu-set default question_set = set() while len(question_set) < 3: menu: set question_set "Choose your question:" "Q1": pass "Q2": pass "Q3": pass "Q4": pass "Q5": pass Thank y...
by tuts
Sun Mar 13, 2022 12:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Dialogue option list of 5 topics that ends after you ask 3 - how?
Replies: 7
Views: 402

Dialogue option list of 5 topics that ends after you ask 3 - how?

Hello! I want to make the player ask 3 questions out of 5 question given to 3 characters, the order of which the player can choose. So: 3 characters, 5 different questions per character, the player chooses random 3 questions, the game ends the sequence and lets the player choose another character to...