Is it choice2 that is not displaying in fake_choice? If so I would assume it’s because goto one is out of indentation.
I’ve had this issue as well. I think it should look like something like this.
Actually, in the initial phase, both the Choice2 and *goto codes were in the same indentation. But then I received an error that the expected indent was 0 and not 4 or 5. As such, I made the correction to it.
Both of those are wrong. The *goto command should be indented the same as the text under the choice itself. Like this:
*fake_choice
#Choice 1
Choice 1 text
*goto choice1
#Choice 2
Choice 2 text
*goto choice2
For simplicity, I used one space to indent the #choices and two spaces to indent the text, but you can use any number of spaces, such as the default four per tab, making 4 for the #choices and 8 for the text.
I also see a *page_break up in your first post, although the formatting obscures it. Page break commands should also be indented the same amount as the text under the choice.