Starting Choices without Dialogue at the Start

I am trying to figure out how to code a choice without narration or dialogue before it. Can somebody help me?

I just make the speechbubble 0% so it gives the illusion that there’s no dialogue before it

1 Like

Like this?:
@speechbubble is 521 269 to 0%
choice
“I don’t understand it.”{
@speechbubble reset
RAIN (talk_awkward_loop)
I don’t understand why.
gain I_dont_understand_it
}“I don’t believe that.”{
@speechbubble reset
RAIN (talk_deny_neutral)
I don’t believe that.
gain I_dont_believe_that
}“Why?”{
@speechbubble reset
RAIN (talk_confused_mindblown)
Why?
gain why
}

1 Like

Yep

It gave me an error though.

you probably have to do it like this,
@speechbubble is 521 269 to 0%
NARRATOR
Choice test
choice
“I don’t understand it.”{
@speechbubble reset
RAIN (talk_awkward_loop)
I don’t understand why.
gain I_dont_understand_it
}“I don’t believe that.”{
@speechbubble reset
RAIN (talk_deny_neutral)
I don’t believe that.
gain I_dont_believe_that
}“Why?”{
@speechbubble reset
RAIN (talk_confused_mindblown)
Why?
gain why
}

1 Like

Oh okay! Thank you.

Oh yes, vividly is right, you still need to have the line of dialogue. You will just make the speechbubble invisible if you set it at 0%

1 Like

Thanks for telling me that. It worked!

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