Customization problem pls help

So I added customization for my character, and the template I used didn’t have the feature of asking the reader if they are completely done. I decided to try and add it myself, but the choice isn’t working and I’ve tried everything to figure out why. This is the message it tells me…

Unexpected block end: Did you forget the { which goes with this }, or forget to put the word “choice” at the beginning of this choice option?

Here is what I have and I’m 95% sure it’s fine.

choice
“Yes he is HOT”{
NARRATOR (ALLISON)
I agree.
label boylcc_end3

} (it says this is “wrong”)
“NO bring me back!”{
label boylcc_custom3

}

Can someone help me??

Hey there @anonymouslilwriter, this is Sydney the Mod! :smiley: Just moving this to Directing Helps and Tips since it involves coding. If you have questions about anything, feel free to PM me and make sure to check out our Forum Tutorial for more info about where to correctly create topics. :wink:

Can you upload a screenshot?

Also, where you added label boylcc_end3.
If the label is already created, that is where your error might be occurring.
If you want to take your reader to a label, you need to add
goto boylcc_end3
or
goto boylcc_custom3
instead of readdressing the label again.

Here’s the screenshot.

Screenshot%20(166)

I will try that

“Label” should be goto

The choice should have been after the last end label. You ended up putting that last label inside the yes choice for some reason

When I replaced it with goto, it says that command doesn’t exist

An easier way to fix your problem is to use Dara.Amaries templates.
I use them in my stories, and they are super helpful :smile:
:smirk:

label boylcc_end3

NARR
Dialogue.

choice
“Yes” {

} “No” {
goto boylcc_custom3
}

I understand now. Thanks you guys!