I’m having trouble with a variable that is affected by a choice and another variable.
If anyone else had a similar question and that got resolved, I am sorry, I tried finding something similar to mine but couldnt find it!
The error I’m getting is “It is illegal to fall out of a choice statement you must goto or finish before the end of the intended block”
My code looks like this
*choice
#You remember when you first noticed the female pupils. Like really noticed, when you couldnt turn your eyes away from them, noticing silly little details you never thought about before.
*if "male" = true
*set sex "hetero"
*goto noromo
*if "trans_male" = true
*set sex "lesbian"
*goto noromo
*if "trans_female" = true
*set sex "hetero"
*goto noromo
*if "female" = true
*set sex "lesbian"
*goto noromo
I also tried it like that, got the same error
*if "female" = true
*set sex "lesbian"
*goto noromo
And like that
*if "female" = true
*set sex "lesbian"
*goto noromo
However I also have bad eyesight, even using cside and its handy numbers I struggle with the intendation and always need to triplecheck so that could also be the cause of the error!