How to do choices *outfit edition*

Need to do three outfit options but dint know the coding for it

1 Like

I can send you the coding from my story for outfit choices if you would like?

Please do if you don’t mind

Okay here you go:
label MENU
BLAISE (talk_think)
I need to get changed for bed. I don’t have much…
What should I wear?
choice “pjs 1” {
@BLAISE is dustoff_loop
@BLAISE changes into BLAISE PJ 1
@BLAISE is think
BLAISE (talk_think)
Cute.
goto DECIDE
} “pjs 2” {
@BLAISE is dustoff_loop
@BLAISE changes into BLAISE PJ 2
@BLAISE is think
BLAISE (talk_think)
Nice
goto DECIDE
}
label DECIDE
BLAISE (talk_think)
Should I wear this?
choice “It will do” {
BLAISE (talk_shrug)
This will be fine.
} “TAKE. THIS. OFF.” {
BLAISE (disappointed)
Ewww.I need to take it off. NOW.
goto MENU
}

If you have any more questions don’t hesitate to ask.

Would you be able to write that script for me but with the name Hestia? And I’ll change the outfit names

label MENU
HESTIA (talk_think)
I need to get changed for bed. I don’t have much…
What should I wear?
choice “pjs 1” {
@HESTIA is dustoff_loop
@HESTIA changes into BLAISE PJ 1
@HESTIA is think
HESTIA (talk_think)
Cute.
goto DECIDE
} “pjs 2” {
@HESTIA is dustoff_loop
@HESTIA changes into BLAISE PJ 2
@HESTIA is think
HESTIA (talk_think)
Nice
goto DECIDE
}
label DECIDE
HESTIA (talk_think)
Should I wear this?
choice “It will do” {
HESTIA (talk_shrug)
This will be fine.
} “TAKE. THIS. OFF.” {
HESTIA (disappointed)
Ewww.I need to take it off. NOW.
goto MENU
}

1 Like

Thanks!

1 Like

do you got this but for three outfits?

1 Like

Just add this before u do the label DECIDE

“pjs 3” {
@HESTIA is dustoff_loop
@HESTIA changes into BLAISE PJ 3
@HESTIA is think
HESTIA (talk_think)
Cool
goto DECIDE
}