How do I make a wrong question ends the mini-game

I am trying to make a mini game where, the Ll is getting asked questions from the audience, and one of one the questions will end the game and the MC won’t gain points. How do I also get rid of the questions once you ask them? and gain points?
(sorry if this doesn’t’t make any sense I’ll try the elaborate more)

1 Like

I’m not sure how to remove questions once they’ve been answered, but to answer the rest of your question… the way I do it is:

label MiniGame1

NARRATOR
You’re now entering a mini-game [and so on… whatever you wanna write here, basically.]

choice
"Insert first question here"{

@LI +2 [or however many points you want the MC to gain per question.]

Then add your animations and answers.

goto MiniGame1

}“Insert second question here.”{

@LI -2 [or however many points you want the MC to lose for this question. Or if you want them to just not gain any, don’t add anything.]

Then add your animations and answers [if applicable]

[Let’s say this one ends the minigame]

goto EndMiniGame

}“Insert third question here.”{

@LI +2 [or however many points you want the MC to gain per question.]

Then add your animations and answers here.

goto MiniGame1

}“Done”{

goto EndMiniGame
}

label EndMiniGame

Enter the scene that follows, here.

^ Hopefully this helps you out a bit.

1 Like

Just to complete what @StoriesByRayna said, to make the questions disappear you’ll need to use gains, like this:

label start_minigame

NARR
What do you want to ask?

choice
"Question 1" if ([NOT question_one]){
gain question_one
@CHAR +1

#CODE SCENE

goto start_minigame
}"Question 2" if ([NOT question_two]){
gain question_two
@CHAR +1

#CODE SCENE

goto start_minigame
}"Question 3"{

#CODE SCENE

goto finish_minigame
}

label finish_minigame
#CONTINUE HERE
2 Likes

Thank you

1 Like

It worked thank you

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.