I’m having trouble with labels… I think. I’m not actually getting an error but for some reason my code isn’t picking up a label about 200 lines later. I don’t know if I should share my code since it’s over 200 lines of code that again isn’t getting any errors.
My code looks like this basically like this
*line_break
We of course, as always, leave the choice up to you, young spark.
*choice
#Be born to Noble parents
We are sure you will be a wonderful child.
*set upbringing "Nobility"
*set Charisma +10
*set Performance +10
*goto BirthCyranon
#Be born to Servant parents
We are sure you will be a wonderful child.
*set upbringing "Servants"
*set Stealth +10
*set Charisma +10
*goto BirthCyranon
#Be born to Merchant parents
We are sure you will be a wonderful child.
*set upbringing "Merchants"
*set History +10
*set Charisma +10
*goto BirthCyranon
#Be born to Performer parents
We are sure you will be a wonderful child.
*set upbringing "Performers"
*set Performance +10
*set History +10
*goto BirthCyranon
#Be born to Military parents
We are sure you will be a wonderful child.
*set upbringing "Military"
*set Melee +10
*set Ranged +10
*goto BirthCyranon
then roughly 200 lines later i have
*label BirthCyranon
*if (upbringing = "Noble") and (race = "Human")
You come into this world a bloody, screaming mess.
*line_break
I don’t know how to better describe it, but what I can say is that after any of the “be born” scenes and the line says “We are sure you will be a wonderful child” it goes to “Next Chapter” and just ends. If I move the BirthCyranon label closer it still ignores the label and then reads another label called UpbringingRakashan instead. Any help would be appreciated, even if I need to share the full code let me know, I was hesitant to do so because it’s over 200 lines and I didn’t want to just post a huge swath of code to the forum.