Hello I’m having a bit of trouble with the ‘No selectable option’ error.
My intention was to have the player have three different choices that they can pick in any order (I used hide_reuse for this). After choosing all three, they go to the next paragraph. I keep count with the variable ‘car’.
I also have some extra flavour text where you could go outside or inside. For example:
*Inside (Choice 1) → Go outside (Choice 2) → Stay outside (Choice 3)
*Go outside (Choice 2) → Go back in (Choice 1) → Go back out (Choice 3)]
Sorry if its a little confusing but basically my problem is that I can’t get to the third option?? Like, after choosing 2 random ones I get the error of ‘no selectable option’ after going back to label stranded and the car variable is = 2.
Here’s my simplified code:
*temp outside false
*label stranded
*if (car = 3)
*goto continue
*choice
*hide_reuse #Choice 1
*if (outside = false)
You are inside
*set car +1
*goto stranded
*if (outside = true)
You go inside
*set outside false
*set car +1
*goto stranded
*hide_reuse #Choice 2
*if (outside = false)
You go outside
*set outside true
*set car +1
*goto stranded
*if (outside = true)
You stay outside
*set car +1
*goto stranded
*hide_reuse #Choice 3
*if (outside = false)
You go outside
*set outside true
*set car +1
*goto stranded
*if (outside = true)
You stay outside
*set car +1
*goto stranded
*label continue
Text text text
I hope someone can help me here and thanks in advance if you can .