Hii there !
I am currently using Dara Amarie’s arrow dressing template, which I altered to fit 6 dressing choices, can anyone tell me if the chosen clothes will be remembered in the next episode? And if not, what can I do to fix it?
Here’s my code:
ARROWS DRESSING GAME - 6 OUTFITS {
&ui LEFT_ARROW create and ui LEFT_ARROW scales to 0.8 0.8 in 0 and ui LEFT_ARROW shifts to 7 187 in 0 and ui LEFT_ARROW opacity 1 in 0
&ui RIGHT_ARROW create and ui RIGHT_ARROW scales to 0.8 0.8 in 0 and ui RIGHT_ARROW shifts to 250 187 in 0 and ui RIGHT_ARROW opacity 1 in 0
&ui CHOOSE create and ui CHOOSE scales to 0.4 0.4 in 0 and ui CHOOSE shifts to 75 110 in 0 and ui CHOOSE opacity 0 in 0
tappable
“LEFT_ARROW” {
&ui CHOOSE opacity 0.8 in 0.1
goto tap_outfit_3_2
} “RIGHT_ARROW” {
&ui CHOOSE opacity 0.8 in 0.1
goto tap_outfit_1_2
}
label tap_outfit_1_2
@LOUISE =1
################## CHANGE OUTFIT NAME TO YOUR 1ST OUTFIT ###############
@LOUISE changes into LOUISE_beach_1
tappable
“LEFT_ARROW” {
goto tap_outfit_3_2
} “RIGHT_ARROW” {
goto tap_outfit_2_2
} “CHOOSE” {
goto tap_outfit_choose_2
}
label tap_outfit_2_2
@LOUISE =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@LOUISE changes into LOUISE_beach_2
tappable
“LEFT_ARROW” {
goto tap_outfit_1_2
} “RIGHT_ARROW” {
goto tap_outfit_3_2
} “CHOOSE” {
goto tap_outfit_choose_2
}
label tap_outfit_3_2
@LOUISE =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@LOUISE changes into LOUISE_beach_3
tappable
“LEFT_ARROW” {
goto tap_outfit_2_2
} “RIGHT_ARROW” {
goto tap_outfit_4_2
} “CHOOSE” {
goto tap_outfit_choose_2
}
label tap_outfit_4_2
@LOUISE =4
################## CHANGE OUTFIT NAME TO YOUR 4TH OUTFIT ###############
@LOUISE changes into LOUISEg_beach_1
tappable
“LEFT_ARROW” {
goto tap_outfit_3_2
} “RIGHT_ARROW” {
goto tap_outfit_5_2
} “CHOOSE” {
goto tap_outfit_choose_2
}
label tap_outfit_5_2
@LOUISE =5
################## CHANGE OUTFIT NAME TO YOUR 5TH OUTFIT ###############
@LOUISE changes into LOUISEg_beach_2
tappable
“LEFT_ARROW” {
goto tap_outfit_4_2
} “RIGHT_ARROW” {
goto tap_outfit_6_2
} “CHOOSE” {
goto tap_outfit_choose_2
}
label tap_outfit_6_2
@LOUISE =6
################## CHANGE OUTFIT NAME TO YOUR 6TH OUTFIT ###############
@LOUISE changes into LOUISEg_beach_3
tappable
“LEFT_ARROW” {
goto tap_outfit_5_2
} “RIGHT_ARROW” {
goto tap_outfit_1_2
} “CHOOSE” {
goto tap_outfit_choose_2
}
label tap_outfit_choose_2
&ui LEFT_ARROW opacity 0 in 0.1 and ui RIGHT_ARROW opacity 0 in 0.1 and ui CHOOSE opacity 0 in 0.1
@LOUISE is primp_neutral
NARRATOR
Are you sure you want to wear this outfit?
choice
“Hll yea!" {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Arrows Dressing Game Template Credit
@LOUISE is kiss_blow_happy_atcamera
} "Hll no!” {
&LOUISE starts idle
&ui LEFT_ARROW opacity 1 in 0.1 and ui RIGHT_ARROW opacity 1 in 0.1 and ui CHOOSE opacity 0.8 in 0.1
if (LOUISE =1) {
goto tap_outfit_1_2
} elif (LOUISE =2) {
goto tap_outfit_2_2
} elif (LOUISE =3) {
goto tap_outfit_3_2
} elif (LOUISE =4) {
goto tap_outfit_4_2
} elif (LOUISE =5) {
goto tap_outfit_5_2
} else {
goto tap_outfit_6_2
}
}