Dressing Game within a choice

Hey, it’s probably a dumb question, but I can’t fix it!!!
I want a dressing game within a choice that i have, but the label isnt helping me!!
this is the script i have:

choice
“I must go.” {

    KAROLYN (idle_terrified_loop)
(I'm going, let's see what he has to say.)

    KAROLYN (idle_armscrossed_angry_loop)
(However, it doesn't mean i'm giving him another chance.)

label choosing_outfit

   KAROLYN (talk_think_neutral)
(What am I going to wear?)

choice “Shorts” {

@KAROLYN is dustoff_neutral_loop
@KAROLYN changes into out1
}
“Dress” {

@KAROLYN is dustoff_neutral_loop
@KAROLYN changes into out2
}
“Jeans” {

@KAROLYN is dustoff_neutral_loop
@KAROLYN changes into out3
}

@pause for a beat

    KAROLYN
(Do I want to wear this, or something else?)

choice “Choose this outfit.” {

    KAROLYN (talk_exclaim_yes_happy)
Yes, this looks awesome!

}
“Try something else.” {

goto choosing_outfit

}

HOW CAN I DO THIS IN THAT SPECIFIC CHOICE OF GOING?! THANKS!!

I guess you should try to name the choice like this-

choice (Options or whatever you like)
“I must go.” {

KAROLYN (idle_terrified_loop)

(I’m going, let’s see what he has to say.)

KAROLYN (idle_armscrossed_angry_loop)

(However, it doesn’t mean i’m giving him another chance.)

label choosing_outfit

KAROLYN (talk_think_neutral)
(What am I going to wear?)

choice “Shorts” {

@KAROLYN is dustoff_neutral_loop
@KAROLYN changes into out1
}
“Dress” {

@KAROLYN is dustoff_neutral_loop
@KAROLYN changes into out2
}
“Jeans” {

@KAROLYN is dustoff_neutral_loop
@KAROLYN changes into out3
}

@pause for a beat

KAROLYN

(Do I want to wear this, or something else?)
choice “Choose this outfit.” {

KAROLYN (talk_exclaim_yes_happy)

Yes, this looks awesome!
}
“Try something else.” {

goto choosing_outfit

}
}
Add another end bracket as you haven’t ended the going choice.
Try this maybe this will works.

it still doesnt work, the label is still inside the choice… and my end bracket it’s on the other part of the script that i didnt write here sorry

You can’t have labels inside the choices. Do you want this dressing game to be applied to only one choice?

yes, can you tell me how?

Do you have only one choice or more? :thinking:

i have 1 choice with 2 options, but i just want the dressing game in only one option

choice
“I must go.” {

KAROLYN (idle_terrified_loop)

(I’m going, let’s see what he has to say.)

KAROLYN (idle_armscrossed_angry_loop)

(However, it doesn’t mean i’m giving him another chance.)
goto choosing_outfit
}“Second Option”{

goto second_option
}

label choosing_outfit

KAROLYN (talk_think_neutral)
(What am I going to wear?)
choice “Shorts” {

@KAROLYN is dustoff_neutral_loop
@KAROLYN changes into out1
}
“Dress” {

@KAROLYN is dustoff_neutral_loop
@KAROLYN changes into out2
}
“Jeans” {

@KAROLYN is dustoff_neutral_loop
@KAROLYN changes into out3
}

@pause for a beat

KAROLYN

(Do I want to wear this, or something else?)
choice “Choose this outfit.” {

KAROLYN (talk_exclaim_yes_happy)

Yes, this looks awesome!
goto first_option
}
“Try something else.” {

goto choosing_outfit

}

label first option
#story for the first option goes here
#at the end

goto story_continue

label second_option
#story for second option goes here
#at the end

goto story_continue

label story_continue
#merge story here

1 Like

it worked. thank you so much!!!

Closing due to one month of inactivity :slight_smile: