Unexpected String - choice maximum? (HELP!)

Hi! I was wondering if a choice has a maximum of possible options because I’ve seen in some stories of decisions with until 8 possibilities.

This comes from an error that has recently been jumping in my story when I code a choice with a lot of options. The script is correct, I’ve tried to shorten the options and this error disappears when I leave 6 choices, but I recall to have seen until 8 options per decision.

So I don’t really understand my mistake here…

Can someone help or tell me if the same happened to you? Thanks! :cherry_blossom:

You can definitely have more than 8 options in a choice. Can you show a screenshot of your script? It could be a different error you’re facing.

Sure! That’s the troubling part. If I delete it, there’s no string error:

Where’s the line of error?

3495 apparently:

Captura de pantalla 2021-07-16 202422

Can you show the screenshot of that line? And don’t close the brackets. It’s easier to spot the error with the brackets open.

I’ll copy-paste the code, it’ll be easier now I can’t screen-shoot everything in a single picture haha

Coding
    NARRATOR
Check your points with the members of the HQ! - Keep in mind that the|bold|greater|reset|the points, the|bold|closer|reset|you'll be...

choice
“Kira🦊”{
@KIRA +0
NARRATOR
You have|bold,color:pink|[4923129372147712] points|reset| with Kira.
goto points
}
“Claude🐰”{
@CLAUDE +0
NARRATOR
You have|bold,color:orange|[5492187607924736] points|reset| with Claude.
goto points
}
“Keroshane :unicorn:”{
@KEROSHANE +0
NARRATOR
You have|bold,color:skyblue|[5595448453169152] points|reset| with Keroshane.
goto points
}
“Ham :pig:”{
@HAM +0
NARRATOR
You have|bold,color:salmon|[5481215744868352] points|reset| with Ham.
goto points
}
“Ariel 🧜‍♀️”{
@ARIEL +0
NARRATOR
You have|bold,color:lavender|[5061284175872000] points|reset| with Ariel.
goto points
}️
“Karenn⚰️”{ ← 3495
@KARENN +0
NARRATOR
You have|bold,color:black|[4625877571272704] points|reset| with Karenn.
goto points
}
“Dandy :wolf:”{
@DANDY +0
NARRATOR
You have|bold,color:grey|[5837938749931520] points|reset| with Dandy.
goto points
}
“Ewelin :syringe:”{
@EWELIN +0
NARRATOR
You have|bold,color:silver|[4594054615072768] points|reset| with Ewelin.
goto points
}
“Kris :fried_egg:”{
@KRIS +0
NARRATOR
You have|bold,color:yellow|[5778717783818240] points|reset| with Kris.
goto points
}
“Go back”{
goto points
}

Thanks for your help! :sob:

There’s an invincible space or something at “}”, before the line "“Karenn⚰️”{ ". Copy and paste the code below and it should work.

NARRATOR

Check your points with the members of the HQ! - Keep in mind that the|bold|greater|reset|the points, the|bold|closer|reset|you’ll be…
choice
“Kira🦊”{
@KIRA +0
NARRATOR
You have|bold,color:pink|[4923129372147712] points|reset| with Kira.
goto points
}
“Claude🐰”{
@CLAUDE +0
NARRATOR
You have|bold,color:orange|[5492187607924736] points|reset| with Claude.
goto points
}
“Keroshane :unicorn:”{
@KEROSHANE +0
NARRATOR
You have|bold,color:skyblue|[5595448453169152] points|reset| with Keroshane.
goto points
}
“Ham :pig:”{
@HAM +0
NARRATOR
You have|bold,color:salmon|[5481215744868352] points|reset| with Ham.
goto points
}
“Ariel 🧜‍♀️”{
@ARIEL +0
NARRATOR
You have|bold,color:lavender|[5061284175872000] points|reset| with Ariel.
goto points
}
“Karenn⚰️”{
@KARENN +0
NARRATOR
You have|bold,color:black|[4625877571272704] points|reset| with Karenn.
goto points
}
“Dandy :wolf:”{
@DANDY +0
NARRATOR
You have|bold,color:grey|[5837938749931520] points|reset| with Dandy.
goto points
}
“Ewelin :syringe:”{
@EWELIN +0
NARRATOR
You have|bold,color:silver|[4594054615072768] points|reset| with Ewelin.
goto points
}
“Kris :fried_egg:”{
@KRIS +0
NARRATOR
You have|bold,color:yellow|[5778717783818240] points|reset| with Kris.
goto points
}
“Go back”{
goto points
}

1 Like

Oh god, you saved me! Thanks a lot, I would have never spotted that by myself! :sob: :sparkling_heart:

1 Like

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