Help with choicescript please

What exactly are you trying to do?

If you want flavor text that ends up in the same place, you’ll want to use *fake_choice:

*fake_choice
  #First option
    You chose A.
  #Second option
    You chose B.
Here's text on next page.

Which will get you:
“You chose A. Here’s text on the next page.” or “You chose B. Here’s text on the next page.”
Edited to add: *fake_choice doesn’t require *goto or *label, because both choices lead you to the same place.

If it’s a more branching decision, though, you basically need to create the branches using *goto and *label, like:

*choice
  #First option
    *goto A
  #Second option
    *goto B

*label A
Here's text for choice A. This is one story branch! 
*finish

*label B
Here's text for choice B. This is another story branch! 
*finish

Here, choosing “First option” will take you to A (“Here’s text for choice A. This is one story branch!”), while choosing "Second option will take you to B (“Here’s text for choice B. This is another story branch!”).

2 Likes