Needing help with remembering choices

(I hope this is the right topic)

Hi everyone,

I am working on my script of one of my stories and something isn’t working.
I can’t get it right.

I hope someone could help me get this right.

Kind Regards,
Mirjam

The { needs to be after (Change clothes).

Also are change clothes and wear what you had on gains or are they the choice options?

Well her Aunt reacts when she changes clothes or when she doesn’t do it.

You’re also missing both }, one before elif and one where the elif statement should end.

I don’t get it:

if { (Change clothes) {
@GRACE is admire_happy
GRACE (talk_handsopen_happy_loop)
At least you changed you clothes.
You look lovely, dear.
elif { (Wear what you had on) {
@GRACE is sigh_disappointed

this doesn’t work

if (Change clothes) {
@GRACE is admire_happy
GRACE (talk_handsopen_happy_loop)
At least you changed you clothes.
You look lovely, dear.
} elif (Wear what you had on) {
@GRACE is sigh_disappointed
}

But Change clothes and wear what you had on need to be gains.

If they aren’t can you show the choice script.

This is the choices:

@KATJA moves to layer 2
KATJA (sigh_disappointed)
(I wish, I didn’t had to go to that dumb party)
(But I promised Neva, I will be there)
choice “Change clothes” {
@KATJA is dustoff_neutral_loop
@KATJA changes into Katja party
KATJA (talk_neutral)
Well at least, aunt Grace will be happy
} “Wear what you had on” {
KATJA (talk_sarcastic)
Whatever, it’s just a boring party anyway.
}
@KATJA exits right

choice (OUTFIT1)
“Change clothes” {
@KATJA is dustoff_neutral_loop
@KATJA changes into Katja party
KATJA (talk_neutral)
Well at least, aunt Grace will be happy
} “Wear what you had on” {
KATJA (talk_sarcastic)
Whatever, it’s just a boring party anyway.
}

if (OUTFIT1 is “Change clothes”) {
@GRACE is admire_happy
GRACE (talk_handsopen_happy_loop)
At least you changed you clothes.
You look lovely, dear.
} else {
@GRACE is sigh_disappointed
}

Thank you very much.

Glad to help.

Closed: Marked as solved by thread op :v: