Is there someone who can help me with this. Below you can see a dressing game I created, however, the site is telling there’s an error on the line where it says “Simple Blue” however I can’t figure it out, please could someone help me?
label garden_party
BETH (think_rubchin)
(Hmm ........)
choice
“Floral Dress” {
@BETH exits right
@pause for a beat
@BETH changes into Garden Party 1
@BETH enters from right to screen right
}
HEIDI (talk_armscrossed_neutral_loop)
Is this the one you want?
choice
“Yes” {
gain TRIED_GARDENPARTY1
} “No” {
goto garden_party
}
} “Simple Blue” {
@BETH exits right
@pause for a beat
@BETH changes into Garden Party 2
@BETH enters from right to screen right
}
HEIDI (talk_armscrossed_neutral_loop)
Is this the one you want?
choice
“Yes” {
gain TRIED_GARDENPARTY2
} “No” {
goto garden_party
}
} “Red Lace” {
@BETH exits right
@pause for a beat
@BETH changes into Garden Party 3
@BETH enters from right to screen right
}
HEIDI (talk_armscrossed_neutral_loop)
Is this the one you want?
choice
“Yes” {
gain TRIED_GARDENPARTY3
} “No” {
goto garden_party
}
}
Could you take a screenshot of what the error says?
Its the one that says unexpected block end and did you forget to put in a { or }
I’ll try copy and pasting it into my script, give me a min
1 Like
I think you forgot to put the word choice before the choice
No, that can’t be it, because there would have to be speech before the word choice and I don’t think that’s the issue, I’m just really confused, thank you though 
1 Like
Right, its time for bed here in the UK, its a quarter to 1 here so I’m sorry if I don’t reply to any messages for several hours, thank you for all your help though, I do appreciate it 
Sorry I changed it some- I just have an easier time with goto’s
label garden_party
BETH (think_rubchin)
(Hmm …)
choice
“Floral Dress” {
@BETH exits right
@pause for a beat
@BETH changes into Garden Party 1
@BETH enters from right to screen right
goto one_want
}
label one_want
HEIDI (talk_armscrossed_neutral_loop)
Is this the one you want?
choice
“Yes” {
gain TRIED_GARDENPARTY1
} “No” {
goto garden_party
}
“Simple Blue” {
@BETH exits right
@pause for a beat
@BETH changes into Garden Party 2
@BETH enters from right to screen right
goto one_want
}
“Red Lace” {
@BETH exits right
@pause for a beat
@BETH changes into Garden Party 3
@BETH enters from right to screen right
goto one_want
}
This worked for me
(I’m sorry if this turned out weird, my web previewer wasn’t working and the story I used to test this wouldn’t appear on my phone)
3 Likes
I also need help with this here is mine… Is this right
label dressing_game
LEXI LOVE (think_rubchin)
(What should I wear today?)
choice (pickingpjs)
“pj 1”{
@LEXI LOVE starts dustoff_neutral_loop
@pause for 2
@LEXI LOVE changes into LL pj 1
@LEXI LOVE starts idle_armscrossed_shifteyes_loop
}
LEXI LOVE
(Looking good)
choice
“Keep it”{
LEXI LOVE (react_pumpfist_happy)
(Yes!)
goto after_pjs
}
“Let me see the other one.”{
goto dressing_pjs
}
LEXI LOVE
What to wear what to wear....
choice
“Pjs 2”{
@LEXI LOVE starts dustoff_neutral_loop
@pause for 2
@LEXI LOVE changes into LL pj 2
@pause for 2
@LEXI LOVE starts idle_armscrossed_shifteyes_loop
LEXI LOVE
(Looking good)
choice
“Keep it”{
LEXI LOVE (react_pumpfist_happy)
(Yes!)
goto after_pjs
}“Let me see the other one.”{
goto dressing_pjs
}}
label after_pjs
goto dressing_end
And my error says unexpected goto (u’dressing_end’, False) what does this mean and how do you fix it?
1 Like
here is a link to a dressing game “shell” i use it everytime i do a dressing game all you need to do is change the character’s name and the outfit name http://www.episodelife.com/2018/01/simple-dressing-game-script-template.html
i hope this helps i didn’t see where the bracket was missing