Urgent! outfit choices

I’m having a lot of trouble scripting a choice within a choice i never really did choices before so this is really hard for me, i just want to ask the readers what outfit did they chose from episode 1 but i don’t know how to script that i’ve watched yt tutorials and read abt it but i’m still confused :sob:

1 Like

hi! when i include outfit choices that i want remembered, i use the point system. (Dara Amarie has a guide on her website, which is very helpful: https://www.dara-amarie.com/points-system)

it’s pretty simple, all you’ll have to do is create a character called “OUTFIT” (or whatever you’d prefer, this is just what i do personally) and within the choice where outfits are picked, you’ll make OUTFIT equal a specific number, like this:

click me!

NARR
What do you want to wear?
choice
“Outfit 1 Name”{
@OUTFIT =1
@MC changes into outfit_1
goto after_dressed
}
“Outfit 2 Name”{
@OUTFIT =2
@MC changes into outfit_2
goto after_dressed
}
“Outfit 3 Name”{
@OUTFIT =3
@MC changes into outfit_3
goto after_dressed
}
label after_dressed

if i want the outfit to be remembered in the next outfit, i’ll do this:"

click me too!

if (OUTFIT =1){
@MC changes into outfit_1
goto after_outfit_change
}
elif (OUTFIT =2){
@MC changes into outfit_2
goto after_outfit_change
}
elif (OUTFIT =3){
@MC changes into outfit_3
goto after_outfit_change
}
label after_outfit_change

2 Likes

Well, Dara has a script about outfit and to remember, I don’t know if this works for you.

3 Likes

Thank you so much this was really helpful!:two_hearts:

1 Like

thank you!:two_hearts: