I'm completely new to Twine, and making games in general and I've encountered my first problem. i'm trying the different functions to get used to Twine and right now i'm experimenting with the "if" variables.
If you assign the result of the (either: "yes","no") part of your expression to a $variable then you can display the value later, so something like the following:
(set: $result to (either: "yes","no"))
result is: $result
(if: $result is "yes")[This text only appears if the result was yes]
Comments