I Have An Important-ish Question

I was wondering how I can get the profile character of a reader to show up in the story as the main character. If anyone knows how to do this please let me know.

@CHARACTERNAME becomes female profile
or
@CHARACTERNAME1 becomes male profile

1 Like

Thank you so much!

1 Like

One other question how do I change the name of this character? Meaning like how can I make it so the reader can choose the name and keep that in the dialoge.

You can copy and paste this below. Remember to replace NAME with the name you are using for your character in the script. Scroll below this for more directions.

#Avatar - Name Input {
NARRATOR
What’s your first name? If you need a suggestion, type Adrienne.

label first_name_input

input What’s Your First Name?|What’s Your First Name?|Done(NAME)

if (NAME is “”) {

    NARRATOR
You do need a name...

goto first_name_input

} else {
continue
}

#}

To make other characters say the name, you can do this:

CHARACTERNAME
Hello, [NAME]!

The [NAME] indicates that this is the typed-in name. You’re going to want to replace NAME with the script name, like I’ve said above. The name input doesn’t show up in the web previewer. To test this out, use the mobile previewer to see if it works.

3 Likes

Thank you so much again!

1 Like

No problem! Happy to help! (:

1 Like

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