Help With Clothing Choices Please

label choose_outfit

    ELENI (think_rubchin)
(What should I wear to go out?)

choice
“Skirt And Shirt” {

@ELENI is dustoff_neutral_loop
@ELENI changes into Eleni_Smart1

@pause for a beat
@pause for a beat

    ELENI (think_rubchin)
(Do I wanna wear this?)

choice
“Definately!” {

@ELENI is primp_neutral

gain Eleni_Party1

goto continue_after_outfit_change

}
“Maybe something else…” {

@ELENI is eyeroll_subtle

goto choose_outfit

}

} “Yellow Dress” {

@ELENI is dustoff_neutral_loop
@ELENI changes into Eleni_Smart2

@pause for a beat
@pause for a beat

    ELENI (think_rubchin)
Do I wanna wear this?

choice
“Definately!” {

@ELENI is primp_neutral

gain Eleni_Party2

goto continue_after_outfit_change

}
“Maybe something else…” {

@ELENI is eyeroll_subtle

goto choose_outfit

}
}

label continue_after_outfit_change

INT. COFFEE SHOP FROM STAGE OL - NIGHT

if (choose_outfit is “Skirt And Shirt”){
@ELENI changes into Eleni_Smart1

}elif (choose_outfit is “Yellow Dress”){
@ELENI changes into Eleni_Smart2

Where am I going wrong please??

label choose_outfit
ELENI (think_rubchin)
(What should I wear to go out?)

choice (choose_outfit)
“Skirt And Shirt” {

@ELENI is dustoff_neutral_loop
@ELENI changes into Eleni_Smart1

@pause for a beat
@pause for a beat

    ELENI (think_rubchin)
(Do I wanna wear this?)

choice
“Definately!” {

@ELENI is primp_neutral
goto continue_after_outfit_change

}
“Maybe something else…” {

@ELENI is eyeroll_subtle

goto choose_outfit

}

} “Yellow Dress” {

@ELENI is dustoff_neutral_loop
@ELENI changes into Eleni_Smart2

@pause for a beat
@pause for a beat

    ELENI (think_rubchin)
Do I wanna wear this?

choice
“Definately!” {

@ELENI is primp_neutral
goto continue_after_outfit_change

}
“Maybe something else…” {

@ELENI is eyeroll_subtle

goto choose_outfit

}
}

label continue_after_outfit_change

INT. COFFEE SHOP FROM STAGE OL - NIGHT

if (choose_outfit is “Skirt And Shirt”){
@ELENI changes into Eleni_Smart1

}else (choose_outfit is “Yellow Dress”){
@ELENI changes into Eleni_Smart2
}

Take the gains out, put the choice option next to the word choice, and refer to this in the future for dressing games to make it simpler. Once you gain a flag, you cannot ungain it so your readers may not end up in the same outfit for the future.

Actually, wait. If she is changing into the outfits directly into the next scene, then you don’t even need the if/else because they stay in the outfits until you change them again.

So say she gets undressed, then wants to change back, that’d be the only time you need the if/else. Otherwise, they stay in their outfits until dictated by you or the choices given by you in another dressing game.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.