In need of help with choices

Hello. I’ve created a few chices in th dialogue, but I don’t know hot to make different responses for each of them. Here’s the code:

CHLOE (talk_shrug_neutral)
Are you for real?

choice
“I’m joking.”{
CAMILA (talk_awkward_loop)
I’m joking.
}
“He’s so dreamy!”{
CAMILA (talk_flirt_charming)
He’s so dreamy!
}
“And that concerns you because…”{
CAMILA (talk_armscrossed_angry_loop)
And that concerns you because…
}

I need to make some answers, f.e. 1st choice “I’m joking.” - response - “I don’t buy it.”
etc.

Thanks in rewards.

Just add more dialogue onto the the choice:

choice
“I’m joking,”{
CAMILA (talk_awkward_loop)
I’m joking.

CHAR2 (animation)
“I don’t buy it.”
}

You can make the different scenes/choice as long as you want.

1 Like

Thank you so much. :blush:

There’s one more thing I need. How can I create a box with type in line. Sorry if I can’t describe it properly. But for example:

MRS EVERLY (talk_read_paper_neutral)
So, first things first. Let’s go over the list of students.
MRS EVERLY (talk_read_paper_neutral)
Camila…

And after that there pops up a window where the player can write the surname of character.

input What’s Your Last Name?|What’s Your Last Name?|Done(SURNAME)

And then you’d type “[SURNAME]” whenever you need to use the character’s last name.

1 Like

Thank you so much.

And before I forget this, how do I make choices in characters dialogue. f.e.

CHARACTER1: What should I ask him?
And then choices pop up, like (how old are you, where are you from etc.)
But in the end of every response I go bak to the list of choices, and then there’s a button saying “I’ve asked him all questions.”

And again sorry for such brief expression of thoughts.

label questions

CHARACTER (think_rubchin)
(What should I ask him?)
choice
“How old are you”?{

(insert response here)

goto questions

}“Where are you from?”{

(insert response here)

goto questions

}“I’m done asking questions”{

continue

}

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