Quick question: Can you let readers pick their names using choices?

Just a quick question, Can you let readers pick their name using choices?

For example:


NARRATOR
What’s your name?

choice
“Name1”{
}
“Name2”{
}
“Name3”{
}
“Name4”{
}

And actually have it remembered? Like if they choose “Name1” They’d actually get called that throughout the whole story?

Also don’t worry, I’m not planning to do since it seems like a lot harder than just the question type one :sweat_smile:

1 Like

You can use this coding, create a character named NAME or whatever you’d like but change in the choice name :slight_smile:

    NARRATOR
Which name would you prefer?

choice (NAME)
“Name1” continue
“Name2” continue
“Name3” continue
“Name4” continue

How to use it in the script:

    CHARACTER
[NAME] hello!

    NAME
Hi, there!

NARR (NAME)
Text.
2 Likes

Ty! :revolving_hearts:

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