Hey,
I’m using the (Tappable Arrows Dressing Game) template from @Dara.Amarie
But I’m not sure how to remember the Outfits I have a code for it but I don’t know if It’s the right one
please helppppp
The charachters name is: STORM
This is her template
ARROWS DRESSING GAME - 3 OUTFITS {
&overlay UI LEFT_ARROW create
&overlay UI LEFT_ARROW opacity 1 in 0
&overlay UI LEFT_ARROW shifts to 7 187 in zone 2 in 0
&overlay UI LEFT_ARROW scales to 0.8 0.8 in 0
&overlay UI RIGHT_ARROW create
&overlay UI RIGHT_ARROW opacity 1 in 0
&overlay UI RIGHT_ARROW shifts to 250 187 in zone 2 in 0
&overlay UI RIGHT_ARROW scales to 0.8 0.8 in 0
&overlay UI CHOOSE create
&overlay UI CHOOSE opacity 0 in 0
&overlay UI CHOOSE shifts to 75 110 in zone 2 in 0
@overlay UI CHOOSE scales to 0.4 0.4 in 0
tappable
“UI LEFT_ARROW” {
&overlay UI CHOOSE opacity 0.8 in 0.1
goto tap_outfit_3
} “UI RIGHT_ARROW” {
&overlay UI CHOOSE opacity 0.8 in 0.1
goto tap_outfit_1
}
label tap_outfit_1
@STORM =1
@STORM changes into STORM-SLEEP2
tappable
“UI LEFT_ARROW” {
goto tap_outfit_3
} “UI RIGHT_ARROW” {
goto tap_outfit_2
} “UI CHOOSE” {
goto tap_outfit_choose
}
label tap_outfit_2
@STORM =2
@STORM changes into STORM-SLEEP
tappable
“UI LEFT_ARROW” {
goto tap_outfit_1
} “UI RIGHT_ARROW” {
goto tap_outfit_3
} “UI CHOOSE” {
goto tap_outfit_choose
}
label tap_outfit_3
@STORM =3
@STORM changes into STORM-SLEEP5
tappable
“UI LEFT_ARROW” {
goto tap_outfit_2
} “UI RIGHT_ARROW” {
goto tap_outfit_1
} “UI CHOOSE” {
goto tap_outfit_choose
}
label tap_outfit_choose
&overlay UI LEFT_ARROW opacity 0 in 0.1
&overlay UI RIGHT_ARROW opacity 0 in 0.1
&overlay UI CHOOSE opacity 0 in 0.1
@STORM is primp_neutral
NARRATOR
Are you sure you want to wear this outfit?
choice
“Yes!” {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Arrows Dressing Game Template Credit
@STORM is kiss_blow_happy_atcamera
} “No, let me try the others” {
&STORM starts idle
&overlay UI LEFT_ARROW opacity 1 in 0.1
&overlay UI RIGHT_ARROW opacity 1 in 0.1
&overlay UI CHOOSE opacity 0.8 in 0.1
if (STORM =1) {
goto tap_outfit_1
} elif (STORM =2) {
goto tap_outfit_2
} else {
goto tap_outfit_3
}
}
outfit code (remeber):
Is this RIGHT?
if (STORM =1){
@STORM changes into STORM-SLEEP2
}elif (STORM =2){
@STORM changes into STORM-SLEEP
}elif (STORM =3){
@STORM changes into STORM-SLEEP5
}