Clothing Choices (Limelight)

Hi,
I want to use a choice where the character chooses something to wear to school, but there is no template. What should I use? This is for limelight, by the way.

You can find here: http://www.episodelife.com/2018/01/simple-dressing-game-script-template.html :grin:

INT. TEEN SISTER’S BEDROOM - DAY

#You can change the background above to any background you like!

@cut to zone 2

@CHARACTER1 stands screen center AND CHARACTER1 faces right

@CHARACTER1 starts idle_happy_loop

@pause for 3

label dressing_game

    CHARACTER1
(What should I wear today?)

choice
“Outfit 1”{

@CHARACTER1 walks to upscreen left in zone 3

@CHARACTER1 changes into MC_outfit1

#Change the word MC_outfit1 to whatever your first outfit’s filename is - e.g. RACHEL_smart_casual

}
“Outfit 2”{

@CHARACTER1 walks to upscreen left in zone 3

@CHARACTER1 changes into MC_outfit2

#Change the word MC_outfit2 to whatever your second outfit’s filename is - e.g. RACHEL_winter_clothes

}
“Outfit 3”{

@CHARACTER1 walks to upscreen left in zone 3

@CHARACTER1 changes into MC_outfit3

#Change the word MC_outfit3 to whatever your third outfit’s filename is - e.g. RACHEL_workout_gear

}

@CHARACTER1 walks to screen center in zone 2

@pause for a beat

    CHARACTER1 (think_rubchin)
(Shall I wear this or try something else?)

choice
“Wear this outfit.”{

    CHARACTER1 (idle_headbob_neutral_loop)
(This is perfect!)

}
“Try something else.”{

goto dressing_game

}

@CHARACTER1 exits left

Omg…I’m using that exact same background!!

Thanks!

1 Like

Its not working for me, I’m using limelight and its saying choices must be dialog Immediately not a branch and this is what I’m doing. And thats what its saying and I don’t know what I’m doing wrong please help!

choice
“Pink Bra and Underwear” {

@YOU exits left
@YOU changes into Pink Bra and Underwear

}
“Blue Underwear and Bra” {

@YOU exits left
@YOU changes into Blue Underwear and Bra

}
“Maroon Underwear and Bra” {

@YOU exits left
@YOU changes into Maroon Underwear and Bra

}

1 Like

You need to put the character dialouge, like this:

YOU (think_rubchin)
(What do I wanna wear?) - Example

choice
“Pink Bra and Underwear” {

@YOU exits left
@YOU changes into Pink Bra and Underwear

}
“Blue Underwear and Bra” {

@YOU exits left
@YOU changes into Blue Underwear and Bra

}
“Maroon Underwear and Bra” {

@YOU exits left
@YOU changes into Maroon Underwear and Bra

}

Be sure to add them entering back on screen after they change clothes.

The outfits need to say this in the outfit section:

YOU_pink_bra_and_underwear
YOU_blue_underwear_and_bra
YOU_maroon_underwear_and_bra

Let me know if this works for you! :smile::smile::smile:

Thanks!