Coding - Can't find the error

Okay, so here’s something that might help me. I put in the “Are you serious” scene along with the choices within it. When I get to that choice (“turn back” and “Chance a run”) the “chance a run” is missing.

You need to put the dialogues within a block of choice

Might this be a case of needing to use the if/elif/else commands?

Not at all, as the person above said, you just have dialogue outside of choices which is interrupting the other choices. If you send me the script I can highlight where I mean and help you fix it.

I think you want something like this:
choice “are you serious” {
scene
choice “turn back” {
scene
} “chance a run” {
scene
}
You can put more scene here
.
.
.
}<-- this bracket is closing the “are you serious” choice
“Oh crap” {
scene
} “not happening dude” {
scene
}

1 Like

One moment.

Okay. Thanks. I’ll give it a shot, bit by bit… :slight_smile:

1 Like

So e.g. the bits I’ve circled here, you have your dialogue after the closed bracket and before the next choice. It needs to be within a choice.

1 Like

Sent. Let’s see if I can learn this! (I learn best by doing. It’s like sheet music. Can’t read it worth a poo, but play a song for me and I can play it back.)

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