Hii, could someone script an outfit choice menu with 10 outfits?
like the choice begins with 2 choices “Long Dresses” “Short Dresses”
then on each choice just 5 choices of the dresses
I think it would be something like this:
label DressesMenu
NARR
Choose your dress
choice
“Long dresses” {
goto LongDresses
}
“Short dresses” {
goto ShortDresses
}
label LongDresses
NARR
Long dresses
choice
“1” {
@CHARACTER changes into {enter outfit name}
}
“2” {
@CHARACTER changes into {enter outfit name}
}
“2” {
@CHARACTER changes into {enter outfit name}
}
“3” {
@CHARACTER changes into {enter outfit name}
}
“4” {
@CHARACTER changes into {enter outfit name}
}
“5” {
@CHARACTER changes into {enter outfit name}
}
NARR
Is this what you want to wear?
choice
“yes” {
NARR
Great
}
“No” {
goto LongDresses
}
“Take me to the other dresses” {
goto DressesMenu
}
label ShortDresses
NARR
Short dresses
choice
“1” {
@CHARACTER changes into {enter outfit name}
}
“2” {
@CHARACTER changes into {enter outfit name}
}
“2” {
@CHARACTER changes into {enter outfit name}
}
“3” {
@CHARACTER changes into {enter outfit name}
}
“4” {
@CHARACTER changes into {enter outfit name}
}
“5” {
@CHARACTER changes into {enter outfit name}
}
NARR
Is this what you want to wear?
choice
“yes” {
NARR
Great
}
“No” {
goto ShortDresses
}
“Take me to the other dresses” {
goto DressesMenu
}
Might have made this more complicated than it needed to be lol but let me know if this works for you i wrote this off the top of my head and i haven’t really coded in awhile
Thank you!
No problem, has it worked well?
Yes it did:)
Great! hope all goes well with your story!