How can I lock a certain closet section until later in my story?

Hi all!

I’m using the closet template in my story, and would like to lock certain sections/outfits until later on in my story. How can I do that?

Much appreciated!

:slightly_smiling_face:

1 Like

can I see what template you use?

in general you can lock any choice like this:

label menu
choice
< LOCKED > “Option1”{
NARR
Sorry this choice is locked
goto menu
} “Option2”{
}

1 Like

It’s the label template by Dara Amarie.
I haven’t put any of my outfits in there yet. Thanks for your help.

label open_closet

@CHARACTER starts idle

CHARACTER
What do I want to wear?

choice
“Casual” {
goto fashion_casual
} “Formal” {
goto fashion_formal
} “Going Out” {
goto fashion_out
} “Business” {
goto fashion_business
} “Leave Closet” {
goto end_closet
}

####### CASUAL CLOTHES SECTION #######
label fashion_casual

CHARACTER
What casual outfit do I want to wear?

choice [shouldPaginate: YES]
“One” {
@CHARACTER changes into Outfit_Name
goto fashion_casual
} “Two” {
@CHARACTER changes into Outfit_Name
goto fashion_casual
} “Three” {
@CHARACTER changes into Outfit_Name
goto fashion_casual
} “Four” {
@CHARACTER changes into Outfit_Name
goto fashion_casual
} “Try a different style!” {
goto open_closet
} “Wear this!” {
goto end_closet
}

####### FORMAL CLOTHES SECTION #######
label fashion_formal

CHARACTER
What formal outfit do I want to wear?

choice [shouldPaginate: YES]
“One” {
@CHARACTER changes into Outfit_Name
goto fashion_formal
} “Two” {
@CHARACTER changes into Outfit_Name
goto fashion_formal
} “Three” {
@CHARACTER changes into Outfit_Name
goto fashion_formal
} “Four” {
@CHARACTER changes into Outfit_Name
goto fashion_formal
} “Try a different style!” {
goto open_closet
} “Wear this!” {
goto end_closet
}

####### GOING OUT CLOTHES SECTION #######
label fashion_out

CHARACTER
What going out outfit do I want to wear?

choice [shouldPaginate: YES]
“One” {
@CHARACTER changes into Outfit_Name
goto fashion_out
} “Two” {
@CHARACTER changes into Outfit_Name
goto fashion_out
} “Three” {
@CHARACTER changes into Outfit_Name
goto fashion_out
} “Four” {
@CHARACTER changes into Outfit_Name
goto fashion_out
} “Try a different style!” {
goto open_closet
} “Wear this!” {
goto end_closet
}

####### BUSINESS CLOTHES SECTION #######
label fashion_business

@CHARACTER starts idle_happy
NARRATOR
What business outfit do I want to wear?

choice [shouldPaginate: YES]
“One” {
@CHARACTER changes into Outfit_Name
goto fashion_business
} “Two” {
@CHARACTER changes into Outfit_Name
goto fashion_business
} “Three” {
@CHARACTER changes into Outfit_Name
goto fashion_business
} “Four” {
@CHARACTER changes into Outfit_Name
goto fashion_business
} “Try a different style!” {
goto open_closet
} “Wear this!” {
goto end_closet
}

####### END OF CLOSET SECTION #######
label end_closet

CHARACTER
Is this the look I’m going for?

choice
“Absolutely!” {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Closet Template Credit
@CHARACTER is dustoff_neutral_loop
@CHARACTER is primp_neutral
} “No, I want to try something else!” {
goto open_closet
}

1 Like

then for this if you want the choice to be visible as locked you can use what I have above - just keep the gotos and labels as Dara has them to not mix it up. You will simply add the locked code and replace the code for changing clothes to the NARR saying it’s locked

just delete the space between the word LOCKED and < >. …when I delete it as it should be forum hides the word. :see_no_evil:

1 Like

Thank you so much!

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