Tappable gem choice help!

Hello! So i’m currently using @Dara.Amarie tappable side arrow dressing game, and for my 3rd outfit I want it to be a gem choice to match the LI! Can someone please help me figure out how to code it?

SCRIPT

INT. CLOSET OPEN SPACE - DAY
@zoom reset
@cut to zone 2
@LISA spot 1.090 161 94 in zone 2 AND LISA moves to layer 3 AND LISA is idle_shiftweight_neutral_loop

SIDE ARROWS DRESSING GAME - 3 OUTFITS {

&ui ARROW_TAP_RIGHT create and ui ARROW_TAP_RIGHT opacity 1 in 0 and ui ARROW_TAP_RIGHT scales to 0.325 0.325 in 0 and ui ARROW_TAP_RIGHT shifts to 215 340 in zone 1 in 0 and ui ARROW_TAP_RIGHT to layer 5
&ui ARROW_TAP_LEFT create and ui ARROW_TAP_LEFT opacity 1 in 0 and ui ARROW_TAP_LEFT scales to 0.325 0.325 in 0 and ui ARROW_TAP_LEFT shifts to 215 265 in zone 1 in 0 and ui ARROW_TAP_LEFT to layer 5
&ui HEART_CHECK_TAP create and ui HEART_CHECK_TAP opacity 0 in 0 and ui HEART_CHECK_TAP scales to 0.325 0.325 in 0 and ui HEART_CHECK_TAP shifts to 215 170 in zone 1 in 0 and ui HEART_CHECK_TAP to layer 5

tappable
“ARROW_TAP_LEFT” {
&ui HEART_CHECK_TAP opacity 1 in 0.3
goto arrow_outfit_tap_3_x
} “ARROW_TAP_RIGHT” {
&ui HEART_CHECK_TAP opacity 1 in 0.3
goto arrow_outfit_tap_1_x
}

label arrow_outfit_tap_1_x
@LISA =1
################## CHANGE OUTFIT NAME BELOW TO YOUR 1ST OUTFIT ###############
@LISA changes into hall1

tappable
“ARROW_TAP_LEFT” {
goto arrow_outfit_tap_3_x
} “ARROW_TAP_RIGHT” {
goto arrow_outfit_tap_2_x
} “HEART_CHECK_TAP” {
goto arrow_outfit_check_x
}

label arrow_outfit_tap_2_x
@LISA =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@LISA changes into hall2

tappable
“ARROW_TAP_LEFT” {
goto arrow_outfit_tap_1_x
} “ARROW_TAP_RIGHT” {
goto arrow_outfit_tap_3_x
} “HEART_CHECK_TAP” {
goto arrow_outfit_check_x
}

label arrow_outfit_tap_3_x
@LISA =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
readerMessage This one will match Mateo.
@LISA changes into hall3

tappable
“ARROW_TAP_LEFT” {
goto arrow_outfit_tap_2_x
} “ARROW_TAP_RIGHT” {
goto arrow_outfit_tap_1_x
} “HEART_CHECK_TAP” {
goto arrow_outfit_check_x
}

label arrow_outfit_check_x
&ui ARROW_TAP_LEFT opacity 0 in 0.1 and ui ARROW_TAP_RIGHT opacity 0 in 0.1 and ui HEART_CHECK_TAP opacity 0 in 0.1
@speechbubble is 160 237 to 100%
NARRATOR
Are you sure you want to wear this outfit?
choice
“Yes!” {
readerMessage Follow @dara.amarie.ep on Instagram!

} “No, let me try a different outfit.” {
&LISA starts idle
&ui ARROW_TAP_LEFT opacity 1 in 0.3 and ui ARROW_TAP_RIGHT opacity 1 in 0.3 and ui HEART_CHECK_TAP opacity 1 in 0.3
if (LISA =1) {
goto arrow_outfit_tap_1_x
} elif (LISA =2) {
goto arrow_outfit_tap_2_x
} else {
goto arrow_outfit_tap_3_x
}
}

3 Likes

Okay, try this one:

I used outfits called LISA_hall1, LISA_hall2, LISA_hall3

Code
@cut to zone 1
&LISA stands screen center in zone 1 AND LISA faces right   ############# You can change the placement. 
&ui ARROW_TAP_RIGHT create and ui ARROW_TAP_RIGHT opacity 1 in 0 and ui ARROW_TAP_RIGHT scales to 0.325 0.325 in 0 and ui ARROW_TAP_RIGHT shifts to 215 340 in zone 1 in 0 and ui ARROW_TAP_RIGHT to layer 5
&ui ARROW_TAP_LEFT create and ui ARROW_TAP_LEFT opacity 1 in 0 and ui ARROW_TAP_LEFT scales to 0.325 0.325 in 0 and ui ARROW_TAP_LEFT shifts to 215 265 in zone 1 in 0 and ui ARROW_TAP_LEFT to layer 5
&ui HEART_CHECK_TAP create and ui HEART_CHECK_TAP opacity 0 in 0 and ui HEART_CHECK_TAP scales to 0.325 0.325 in 0 and ui HEART_CHECK_TAP shifts to 215 170 in zone 1 in 0 and ui HEART_CHECK_TAP to layer 5

tappable
"ARROW_TAP_LEFT" {
&ui HEART_CHECK_TAP opacity 1 in 0.3
goto arrow_outfit_tap_3_x
} "ARROW_TAP_RIGHT" {
&ui HEART_CHECK_TAP opacity 1 in 0.3
goto arrow_outfit_tap_1_x
}

label arrow_outfit_tap_1_x
@LISA =1
################## CHANGE OUTFIT NAME BELOW TO YOUR 1ST OUTFIT ###############
@LISA changes into LISA_hall1

tappable
"ARROW_TAP_LEFT" {
goto arrow_outfit_tap_3_x
} "ARROW_TAP_RIGHT" {
goto arrow_outfit_tap_2_x
} "HEART_CHECK_TAP" {
goto arrow_outfit_check_x
}

label arrow_outfit_tap_2_x
@LISA =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@LISA changes into LISA_hall2

tappable
"ARROW_TAP_LEFT" {
goto arrow_outfit_tap_1_x
} "ARROW_TAP_RIGHT" {
goto arrow_outfit_tap_3_x
} "HEART_CHECK_TAP" {
goto arrow_outfit_check_x
}

label arrow_outfit_tap_3_x
@LISA =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
readerMessage This one will match Mateo.
@LISA changes into LISA_hall3

tappable
"ARROW_TAP_LEFT" {
goto arrow_outfit_tap_2_x
} "ARROW_TAP_RIGHT" {
goto arrow_outfit_tap_1_x
} "HEART_CHECK_TAP" {
goto arrow_outfit_check_x1
}

label arrow_outfit_check_x
&ui ARROW_TAP_LEFT opacity 0 in 0.1 and ui ARROW_TAP_RIGHT opacity 0 in 0.1 and ui HEART_CHECK_TAP opacity 0 in 0.1
@speechbubble is 160 237 to 100%
        NARRATOR
    Are you sure you want to wear this outfit?
choice
<GREEN> "Yes!" {
readerMessage Follow @dara.amarie.ep on Instagram!

} "No, let me try a different outfit." {
&LISA starts idle
&ui ARROW_TAP_LEFT opacity 1 in 0.3 and ui ARROW_TAP_RIGHT opacity 1 in 0.3 and ui HEART_CHECK_TAP opacity 1 in 0.3
if (LISA =1) {
goto arrow_outfit_tap_1_x
} elif (LISA =2) {
goto arrow_outfit_tap_2_x
} else {
goto arrow_outfit_tap_3_x
}
}

label arrow_outfit_check_x1
&ui ARROW_TAP_LEFT opacity 0 in 0.1 and ui ARROW_TAP_RIGHT opacity 0 in 0.1 and ui HEART_CHECK_TAP opacity 0 in 0.1
@speechbubble is 160 237 to 100%
        NARRATOR
    Are you sure you want to wear this outfit?
choice
<GEMS:8>"Yes!" {
readerMessage Follow @dara.amarie.ep on Instagram!

} "No, let me try a different outfit." {
&LISA starts idle
&ui ARROW_TAP_LEFT opacity 1 in 0.3 and ui ARROW_TAP_RIGHT opacity 1 in 0.3 and ui HEART_CHECK_TAP opacity 1 in 0.3
if (LISA =1) {
goto arrow_outfit_tap_1_x
} elif (LISA =2) {
goto arrow_outfit_tap_2_x
} else {
goto arrow_outfit_tap_3_x
}
}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.