How do I make investigation choices?

So im trying to add a series of investigation questions but i dont know how to go about it. Ive seen it in other stories but how do i do it? Im trying to get something like this

Why?

Who?

Where?

or the option to skip the questions and go straight to the next part.

2 Likes

Maybe I am misunderstanding, but you code it like you would code any other choice, though I would recommend using *fake_choice to avoid unnecessary *gotos. If you want the player to be able to select multiple questions, use *hide_reuse

*label questions
*hide_reuse
*fake_choice
  #Why?
    Text
    *goto questions
  #Who?
    Text
    *goto questions
  #Where?
    Text
    *goto questions
  #I don't have any questions.
3 Likes

Thats what I needed! Thank you!

2 Likes