Choice must follow dialogue immediately

first time episode story writer here, feeding off of tutorials. Today my easy to solve problem is exactly what the title says. Ill paste my code and if anybody can correct my script, its highly appreciated.

choice
“Romance”{
GABRIEL (talk_sit_neutral_loop) +1
Great!
}“Action”{
GABRIEL (idle_sit_armcrossed_unimpressed_loop) -1
Wow.
}“Comedy”{
GABRIEL (idle_sit_armcrossed_unimpressed_loop) -1
Wow.
}
choice
“animated”{
GABRIEL (idle_sit_armcrossed_unimpressed_loop)
Wow.
}“live action”{
GABRIEL (applaud_sit_happy_loop)
Woohoo!
}
choice
“long”{
GABRIEL (applaud_sit_happy_loop)
Lets start this movie!
}“short”{
GABRIEL (idle_sit_armcrossed_unimpressed_loop)
Wow.
}

1 Like

You have to add a dialogue before the choice. It can be the narrator saying something or a character like:

CHARACTER/NARRATOR

choice “x” {

} “Y” {

}

and so on!

2 Likes

you can not add minus like that

points has to be added or removed like this

@NAME +1
@NAME -1

1 Like

that too their should be said something here

1 Like

Its fixed now fyi

You can actually. There are two ways to add or subtract the points- together with the dialog or separate the commands.

1 Like

You’ve got choice written before every other option. If these are all in the same choice, you only need in one.

Its fixed now, but I am still taking suggestions

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