Hi! I’m using Dara Amarie’s Flagged Dressing Game template, however, hers only comes with three and I needed seven. Here’s the code:
label dressing_game_1
YOU (idle_shiftweight_neutral_loop)
(What do I want to wear?)
choice
“Casual Cat.” {
@YOU changes into YOU_EP5_1
#add your own dialogue and animations
YOU (think_rubchin)
(Is this the one?)
choice
“It’s perfect!” {
gain costumecat
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces
} “No, I want to try on the others!” {
goto dressing_game_1
}
OUTFIT 2 STARTS HERE
} “Super heroine.” {
@YOU changes into YOU_EP5_2
#add your own dialogue and animations
YOU (think_rubchin)
(Is this the one?)
choice
“It’s perfect!” {
gain costumehero
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces
} “No, I want to try on the others!” {
goto dressing_game_1
}
OUTFIT 3 STARTS HERE
} “Stunning Stag.” {
@YOU changes into YOU_EP5_3
#add your own dialogue and animations
YOU (think_rubchin)
Is this the one?
choice
“It’s perfect!” {
gain costumestag
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces
} “No, I want to try on the others!” {
goto dressing_game_1
}
“Etheral Pixie.” {
@YOU changes into YOU_EP5_4
#add your own dialogue and animations
YOU (think_rubchin)
(Is this the one?)
choice
“It’s perfect!” {
gain costumepixie
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces
} “No, I want to try on the others!” {
goto dressing_game_1
}
OUTFIT 2 STARTS HERE
} “Punk Puppy.” {
@YOU changes into YOU_EP5_5
#add your own dialogue and animations
YOU (think_rubchin)
(Is this the one?)
choice
“It’s perfect!” {
gain costumedog
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces
} “No, I want to try on the others!” {
goto dressing_game_1
}
OUTFIT 3 STARTS HERE
} “Pretty Princess.” {
@YOU changes into YOU_EP5_6
#add your own dialogue and animations
YOU (think_rubchin)
Is this the one?
choice
“It’s perfect!” {
gain costumeprincess
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces
} “No, I want to try on the others!” {
goto dressing_game_1
OUTFIT 2 STARTS HERE
} “Cool Cowboy.” {
@YOU changes into YOU_EP7_7
#add your own dialogue and animations
YOU (think_rubchin)
(Is this the one?)
choice
“It’s perfect!” {
gain costumecowboy
#change the flag name to whatever you want
#flag names can only have letters, numbers, and underscores. No spaces
} “No, I want to try on the others!” {
goto dressing_game_1
}
The error message is: 'There is a { on line 1029 that does not have a match }. (I bolded line 1029)