Type a career option

Hi everyone! I need help :c
I’m writting my story, and I want that the reader choose the profession.
But writting it on a text box (the box when you need to write the name of the main character), and remember in all the story the option.
Example:

aaaaa

And remember the doctor option in all the story.
I will be grateful if someone help me, because I can’t find how I can do this.
Thanks <3

2 Likes

input What career do you want to study? | What career do you want to study? | Done (CAREER)

then to refer back to that in the story, just put [CAREER] in whatever dialogue you type

3 Likes

to add to what the above reply says, when you want a separate branch for a career, say doctor, you can remember it by using:

if (CAREER is "Doctor") (
#scene for career doctor
} elif (CAREER is "Writer") {
#scene for career writer
} 

and so on.

2 Likes

you cant make separate branches for input since you do not know what reader has written in it

2 Likes

I thought they want to provide separate story lines for certain career choices and want to know the way to do that :sweat_smile:

2 Likes

Unless OP restricts readers’ choice of answers by asking “Which career do you want to study? Doctor/Writer?”
Or else it’s difficult to know what answers the readers put in to match the corresponding scenes. :thinking:

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.