I'm trying to make a series of multiple selectable choices, but after a certain choice made by the user, the next choice needs to be the same regardless of the answer of the previous choice. (Do I need more than just HTML?) The next choices can't be visible when making the previous, but needs to be added under it.
I basically want the same choices to show up without having to type the second choice twice, the thirth choice 4 times, the fourth choice 8 times etc.
(I know just making a passage for each choice will easily solve my problem, but being to do it in one passage is preferable to me.)
What I already have. A problem is under "Choice 1" for example.
<span id="Answer"><<print $answer>>
<<click "[Choice1 A]">><<replace "#Answer">>
Choice1
*Right here I would like Choice 2 to show up.*
<</replace>><</click>>
<<click "[Choice1 B]">><<replace "#Answer">>
1B
<span id="Answer2"><<print $answer2>>
<<click "[Choice2 A]">><<replace "#Answer2">>
2A
<</replace>><</click>>
<<click "[Choice2 B]">><<replace "#Answer2">>
2B
<span id="Answer3"><<print $answer3>>
<<click "[Choice3 A]">><<replace "#Answer3">>
3A
<</replace>><</click>>
<<click "[Choice3 B]">><<replace "#Answer3">>
3B
[[next passage]]
<</replace>><</click>>
</span>
<</replace>><</click>>
</span>
<</replace>><</click>>
</span>