Need help asap with choices!

okay… i’m trying to make a story, i;ve written this code by hand with tutorials. and episode still says error.

choice
“To get laid!” {
@RILEY is (dance_club_happy_loop)
RILEY
(Cheers to that!)
RILEY (sip_cup_happy)
}“To find a rich guy!”{
(I hope I can find a rich guy!)
@RILEY is eyeroll_sarcastic
RILEY
(Preferably someone who isn’t involved in crime.)
@RILEY is laugh_giggle
RILEY
(Like that would ever happen!)
@RILEY is laugh_chuckle
@RILEY is sip_cup_happy
@RILEY is dance_armsup_bounce_loop)
}

2 Likes

I think you put the RILEY (sip_cup_happy) on the wrong place. Copy and paste it to under }“To find a rich guy!”{

1 Like

I think maybe it will be helpful if you put a screenshot!

1 Like

Screenshot 2021-06-18 12.44.41 PM

1 Like

RILEY (sip_cup_happy)
Isn’t a valid code if used without dialogue after it, like I said above too…

Also, it often says you might miss a closing bracket or forgot the word choice if you made a script mistake in the choices itself. If you’re sure you got the right closing and opening, yet it still gives an error you can try putting the script from in between the choices into an empty script and see the error.

1 Like

You’re getting an unexpected block end because of line 3619, it has nothing to do with the choice and its curly brackets.

You only use parenthesis () when you want to make the character perform an animation with dialogues. Example:
RILEY (dance_club_happy_loop)
(Cheers to that!)

You don’t have to use that when the character is just doing the animation. Example:
@RILEY is dance_club_happy_loop

→ So in line 3616, if you are not combining the animation with the dialogue, it should be:
@RILEY is dance_club_happy_loop
→ Line 3619: @RILEY is sip_cup_happy
→ Line 3632 (remove the closing bracket): @RILEY is dance_armsup_bounce_loop

2 Likes

thank u

1 Like

thank u!!!

2 Likes

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