My code:
label woundedchange
EMBER (think)
(What should I wear?)
choice “Jeans+Jacket” {
@EMBER is dustoff_loop
@EMBER changes into Wounded_jeans
gain Jacket+jeans
} “Shorts+Denim” {
@EMBER is dustoff_loop
@EMBER changes into Wounded_shorts
gain shorts+denim
}
The error says:
There is a { on line 614 that does not have a matching }
The bolded area is line 614.
HELP
Why did you but it in bold…?
To show what line is 614. It isn’t bolded in my actual code.
label woundedchange
EMBER (think)
(What should I wear?)
choice
“Jeans+Jacket” {
@EMBER is dustoff_loop
@EMBER changes into Wounded_jeans
gain Jacket+jeans
} “Shorts+Denim” {
@EMBER is dustoff_loop
@EMBER changes into Wounded_shorts
gain shorts+denim
}
Gain names can only be letters, numbers, and/or underscores. Any other special characters won’t work. So you’ll have to remove the plus sign from your gain name.
Okay. Thank you! I’ll try it.