Problem with *choice statement

That’s right (except, apparently, for the last choice option, you can skip the goto for that one?). See this example by the Choicescript devs:

*choice
    #Be very naughty.
        Santa refuses to give you a present.
        *goto present    
    #Be mostly nice.
        Santa gives you a present reluctantly.
        *goto present
    #Be as nice as can be.
        Santa gives you a present enthusiastically.

*label present
Inside the gift box is a video game!

That example, incidentally, is from a page on implicit control flow. If you activate it, you can skip the label and the goto for every choice option that doesn’t jump around or finish.

2 Likes