Tappable outfit coding

this is the one asking him - if you dont want it simply just use the first part for the tappable choice (you can delete the lable too) ans simpy add the character changes into command in each choice

lable_tappable_dressinggame
tappable
“DRESS1” {
@DRESS =1

} “DRESS2” {
@DRESS =2

} “DRESS3” {
@DRESS =3

} “DRESS4” {
@DRESS =4

}

NARR
You have chosen
if (DRESS=1) {
NARR
Dress number 1

} elif(DRESS=2) {
NARR
Dress number 2
} elif(DRESS=3) {
NARR
Dress number 3
}
else {
NARR
Dress number 4
}
NARR
Are you happy with your choice?
choice
“NO - I changed my mind” {
goto tappable_dressinggame
} “YES” {
}

if (DRESS=1) {
@CHAR changes into dress1
} elif(DRESS=2) {
@CHAR changes into dress2
} elif(DRESS=3) {
@CHAR changes into dress3
}else {
@CHAR changes into dress4
}