So, I’m currently writing my story and I’m at the moment I’m working on my customization scene.
However, I’m giving the readers a choice as to which character they’d like to customize first:
But, whenever I put in the customization code I get this error:
Does anyone know how to fix this error?
Help would be appreciated!
Nope, but I’ll try it now.
Do you mean putting a gain inside the original choice and then having the customization in the if/elif coding?
No, don’t try that.
When you click on the error message, where does it take you?
It takes me to the label female_custom.
Could you send a screenshot of the lines in which female_custom is?
I found this. The errors are different, but I think this still applies to your error.
If you are getting warning messages saying that NO LABELS EXIST, then that means you put the template inside of a choice or if/elif/else code. Templates have labels and labels cannot be inside of brackets. You will need to place the template outside of the choice, then put a goto inside the choice that leads to the first label of the template. HERE is an example of how to do that.
1 Like
Another thing is that labels cannot go inside of if/elif/else statements and they can’t go inside of choices. Instead, you’ll need to put a goto in if/elif/else statements and/or choices and this would lead to a label outside of them. Then you can use another goto to merge both pathways, and this that would lead to a label that it shares the same name with.
Can read more here: HOW TO: Labels and Gotos 🖤
2 Likes
You can’t include a label in a choice
1 Like
Thank you, I’ll read that right now!
NP
from ur screenshot, i see label female_custom_1 is in the choice “Lauren (MC)”{ so yeah having a label inside a choice will not work
Good luck
1 Like
This worked!
Thanks so much
1 Like
system
Closed
July 23, 2019, 10:07am
17
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.