Hi there, I hope this isn't a stupid question. I made the first choice in my game, now how do I make another choice following each answer? Here is my failing code:
<br>[[I am a man.]]
<br>[[I am a woman.]]
<br>[[I am gender neutral.]]
[[I am a man.]]:
mantext
<br>
<br>[[text1]]
<br>[[text2]]
<br>[[text3]]
[[text1.]]:
text1.1
[[text2]]:
text2.1
[[text3]]:
text3.1
[[I am a woman.]]:
womantext
[[I am gender neutral.]]:
genderneutraltext
Here is the warning it gives me:
WARNING: null line 9: In section 'I am a man.' there is a link to a section called [[text3]], which doesn't exist
WARNING: null line 9: In section 'I am a man.' there is a link to a section called [[text2]], which doesn't exist
As you can see, it only registers the first option, text1, as following the gender choice. What have I done wrong?
I've just copied your code into the web editor and changed "[[text1.]]:" into "[[text1]]:" and it seems to work just fine.