Hello there,
I’m using Dara Amarie’s Arrows Dressing game template. She mentioned in her script that it uses a point system. I’ve to use two dressing games in a single chapter and it’s glitching. Here’s my script, I’ll be really thankful if anyone could help me out what’s going on here!
Thank you.
#1
&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
} “RIGHT_ARROW” {
&ui CHOOSE opacity 0.8 in 0.1
goto tap_outfit_1
}
label tap_outfit_1
@INDU =1
################## CHANGE OUTFIT NAME TO YOUR 1ST OUTFIT ###############
@INDU changes into INDU_SPECIAL_1
tappable
“LEFT_ARROW” {
goto tap_outfit_3
} “RIGHT_ARROW” {
goto tap_outfit_2
} “CHOOSE” {
goto tap_outfit_choose
}
label tap_outfit_2
@INDU =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@INDU changes into INDU_SPECIAL_2
tappable
“LEFT_ARROW” {
goto tap_outfit_1
} “RIGHT_ARROW” {
goto tap_outfit_3
} “CHOOSE” {
goto tap_outfit_choose
}
label tap_outfit_3
@INDU =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@INDU changes into INDU_SPECIAL_3
tappable
“LEFT_ARROW” {
goto tap_outfit_2
} “RIGHT_ARROW” {
goto tap_outfit_1
} “CHOOSE” {
goto tap_outfit_choose
}
label tap_outfit_choose
&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
@INDU 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
@INDU is kiss_blow_happy_atcamera
} “No, let me try the others” {
&INDU 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 (INDU =1) {
goto tap_outfit_1
} elif (INDU =2) {
goto tap_outfit_2
} else {
goto tap_outfit_3
}
}
#2
ARROWS DRESSING GAME - 3 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_6
} “RIGHT_ARROW” {
&ui CHOOSE opacity 0.8 in 0.1
goto tap_outfit_4
}
label tap_outfit_4
@CHARACTER =4
################## CHANGE OUTFIT NAME TO YOUR 1ST OUTFIT ###############
@CHARACTER changes into INDU-1
tappable
“LEFT_ARROW” {
goto tap_outfit_6
} “RIGHT_ARROW” {
goto tap_outfit_5
} “CHOOSE” {
goto tap_outfit_choose2
}
label tap_outfit_5
@CHARACTER =5
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@CHARACTER changes into INDU-2
tappable
“LEFT_ARROW” {
goto tap_outfit_4
} “RIGHT_ARROW” {
goto tap_outfit_6
} “CHOOSE” {
goto tap_outfit_choose2
}
label tap_outfit_6
@CHARACTER =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@CHARACTER changes into INDU-3
tappable
“LEFT_ARROW” {
goto tap_outfit_5
} “RIGHT_ARROW” {
goto tap_outfit_4
} “CHOOSE” {
goto tap_outfit_choose2
}
label tap_outfit_choose2
&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
@CHARACTER 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
@CHARACTER is kiss_blow_happy_atcamera
} “No, let me try the others” {
&CHARACTER 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 (CHARACTER =4) {
goto tap_outfit_4
} elif (CHARACTER =5) {
goto tap_outfit_5
} else {
goto tap_outfit_6
}
}