Another questionnn

One more thing, how do i give a character two responses, depending on what the MC chooses

Are you talking about choices?

yeah

MC (talk_think)
What should I say?

Choice
“FIRST CHOICE” {
Whatever you want the choice to say goes here

} “SECOND CHOICE” }
Whatever you want the second choice to say goes here

{

no like how do i get another character’s response to depend on what the choice is

You can put that dialogue inside the choice if it’s on the same chapter like this

NARR
What do I say?

choice (PERSPECTIVE) “Rational Answer” {

MC (talk_neutral)
So this is happening because you did that.

CHAR1 (talk_sheepish)
Yes, I had no idea it’d end up like this…

CHAR1 (talk_sad)
Otherwise, I wouldn’t have done it.

} “Let your emotions out” {

MC (talk_angry_accuse)
You knew this would jeopardize me!

CHAR (talk_neutral_deny)
That was never my intention to hurt you.

}

Or if it’s on another chapter

if (PERSPECTIVE is “Rational Answer”) {

CHAR1 (talk_sheepish)
Yes, I had no idea it’d end up like this…

CHAR1 (talk_sad)
Otherwise, I wouldn’t have done it. } else {

CHAR (talk_neutral_deny)
That was never my intention to hurt you.

}

ok ty

1 Like

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