Outfit templates!

hey episode friends! i was just wondering if anyone had made an outfit choice template/dressing game that had more than 3 choices? i want my character to choose between 5 different outfits but i can’t seem to figure it out! any help would be much appreciated xx

7 Likes

I don’t know of any templates but I can create a quick one on here if you would like?

2 Likes

that would be so helpful if you could! you’re awesome

here is for an outfit choice with five options:

label MENU
YOU (think_rubchin)
What should I wear

choice
“Pink Dress”{
@YOU changes into outfit1
@YOU is idle_handsonhip_neutral_loop
goto DECIDE
}
“Black Skirt”{
@YOU changes into outfit2
@YOU is idle_handsonhip_neutral_loop
goto DECIDE
}
“Ripped Jeans”{
@YOU changes into outfit3
@YOU is idle_handsonhip_neutral_loop
goto DECIDE
}
“Scarf”{
@YOU changes into outfit4
@YOU is idle_handsonhip_neutral_loop
goto DECIDE
}
“Bikini”{
@YOU changes into outfit1
@YOU is idle_handsonhip_neutral_loop
goto DECIDE
}

label DECIDE
YOU (admire_happy)
Should I wear this?

choice
“Yes!”{
continue
}
“Go back”{
goto MENU
}

SN: These animations are for LL so they would obviously need to change for ink. And just change what are in quotations to your outfit display name and changes the outfit1, outfit2, etc. to what you called your outfit when creating it.

27 Likes

for ink btw!

thankyou!!<3

Ok!
label dressing_game
CHARACTER (think)
(What should I wear today?)
choice
“Outfit 1”{
@CHARACTER is dustoff_loop
@CHARACTER changes into CHARACTER_outfit1
goto dressing_end
}“Outfit 2”{
@CHARACTER is dustoff_loop
@CHARACTER changes into CHARACTER_outfit2
goto dressing_end
}“Outfit 3”{
@CHARACTER is dustoff_loop
@CHARACTER changes into CHARACTER_outfit3
goto dressing_end
}“Outfit 4”{
@CHARACTER is dustoff_loop
@CHARACTER changes into CHARACTER_outfit4
goto dressing_end
}“Outfit 5”{
@CHARACTER is dustoff_loop
@CHARACTER changes into CHARACTER_outfit5
goto dressing_end
}
label dressing_end
CHARACTER (blow_kiss)
(I look amazing in this! Should I wear it?)
choice
“Um, HECK yes!”{
CHARACTER (primp)
(I do look stunning, after all.)
}“Nah, I’ve got nicer options than this”{
goto dressing_game
}
Hope this helped!

19 Likes

twas super helpful! thanks heaps

1 Like

Your welcome. Honestly, I’m just glad that it gave me an excuse for not doing my hw xD

5 Likes

Hi ! I try your codes, it does not work but I do not understand why?
Can you help me please ?

With choices you have to do this,

choice
“Cute in Pink.”{
blah blah
}
“leather and gold.”{
blah blah
}
“Sexy in red.”{
BLAH BLAH
}

You were putting the {'s wrong.
Dont actually put blah blah x3 I was lazy

1 Like

Ah yeah Thanks !
On the other hand I am blocked the reader chooses “Nah …”,
the choice does not return to the outfit …
how to do ?

Here are the codes typed:

  LANA (blow_kiss)
(I look amazing in this! Should I wear it?)

choice
“Um, yes ! I am absolutely fantastic!”{
LANA (primp)
(I do look stunning, after all.)
}“Nah, I’ve got nicer options than this”{
goto label dressing_game
}

bloque

2 Likes

Hmm i dont know.
I use limelight so idk.
Maybe make your own thread on it and ask other people?

1 Like

Ok ok thanks anyway @SomePerson :wink:
If anyone sees the mistake

Can you post your dressing game here? It’s seems like you made a few mistakes with labels

2 Likes

The tabs with the names of the outfits are displayed well,
I can choose but when I chose “Nah, I’ve got nicer options than this”
I do not go back to the choice of outfits … (I do not know if the explanation is very clear :roll_eyes:)

LANA
(What should I wear for the party?)

choice
“Cute in pink”{
@LANA changes into Cute in pink
@LANA is idle_happy
goto dressing_end
}
“leather and Gold”{
@LANA changes into leather and Gold
@LANA is idle_happy
goto dressing_end
}
“sexy in red”{
@LANA changes into sexy in red
@LANA is idle_happy
goto dressing_end
}
label dressing_end

    LANA (blow_kiss)
(I look amazing in this! Should I wear it?)

choice
“Um, yes ! I am absolutely fantastic!”{
LANA (primp)
(I do look stunning, after all.)
}“Nah, I’ve got nicer options than this”{
goto dressing_game
}

2 Likes

There’s an amazing outfit template by @Dara.Amarie ! Check it!!

1 Like

You have to label your choice in order to go back to it so here’s how it should read

label dressing_game

LANA
(What should I wear for the party?)

choice
“Cute in pink”{
@LANA changes into Cute in pink
@LANA is idle_happy
goto dressing_end
}
“leather and Gold”{
@LANA changes into leather and Gold
@LANA is idle_happy
goto dressing_end
}
“sexy in red”{
@LANA changes into sexy in red
@LANA is idle_happy
goto dressing_end
}
label dressing_end

LANA (blow_kiss)

(I look amazing in this! Should I wear it?)
choice
“Um, yes ! I am absolutely fantastic!”{
LANA (primp)
(I do look stunning, after all.)
}“Nah, I’ve got nicer options than this”{
goto dressing_game
}

3 Likes

Thank you @CoraMae I save many of her articles, they will serve me well!
Thank you too @RudeInception !!! IT’s WORK !!!
I knew I had forgotten something but I did not see what!

:kissing_heart: :kissing_heart: :kissing_heart:

1 Like

Where you’ve put the ‘goto label dressing_game’, the word label isn’t needed. Hope this helps!

1 Like