I have a problem with the arrow dressing game.
I can only choose outfit 2 and outfit 3, when I test it on my tablet.
Not outfit 1.
The choose button doesn’t work (at outfit 1).
With the other 2 outfits, the choose button works perfectly.
I don’t know what I am doing wrong.
I have tried everything but nothing works.
Can someone please help me with this?
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_PURPLE create and ui CHOOSE_PURPLE scales to 0.253 0.253 in 0 and ui CHOOSE_PURPLE shifts to 83 99 in 0 and ui CHOOSE_PURPLE opacity 0 in 0
tappable
“LEFT_ARROW” {
&ui CHOOSE_PURPLE opacity 0.8 in 0.1
goto tap_stefanie_school_trip_3
} “RIGHT_ARROW” {
&ui CHOOSE_PURPLE opacity 0.8 in 0.1
goto tap_stefanie_school_trip_1
}
label tap_stefanie_school_trip_1
@STEFANIE =1
################## CHANGE OUTFIT NAME TO YOUR 1ST OUTFIT ###############
@STEFANIE changes into Stefanie school trip 1
tappable
“LEFT_ARROW” {
goto tap_stefanie_school_trip_3
} “RIGHT_ARROW” {
goto tap_stefanie_school_trip_2
} “CHOOSE PURPLE” {
goto tap_choose_purple
}
label tap_stefanie_school_trip_2
@STEFANIE =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@STEFANIE changes into Stefanie school trip 2
tappable
“LEFT_ARROW” {
goto tap_stefanie_school_trip_1
} “RIGHT_ARROW” {
goto tap_stefanie_school_trip_3
} “CHOOSE_PURPLE” {
goto tap_choose_purple
}
label tap_stefanie_school_trip_3
@STEFANIE =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@STEFANIE changes into Stefanie school trip 3
tappable
“LEFT_ARROW” {
goto tap_stefanie_school_trip_2
} “RIGHT_ARROW” {
goto tap_stefanie_school_trip_1
} “CHOOSE_PURPLE” {
goto tap_choose_purple
}
label tap_choose_purple
&ui LEFT_ARROW opacity 0 in 0.1 and ui RIGHT_ARROW opacity 0 in 0.1 and ui CHOOSE_PURPLE opacity 0 in 0.1
@STEFANIE 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
@STEFANIE is kiss_blow_happy_atcamera
} “No, let me try the others” {
&STEFANIE starts idle
&ui LEFT_ARROW opacity 1 in 0.1 and ui RIGHT_ARROW opacity 1 in 0.1 and ui CHOOSE_PURPLE opacity 0.8 in 0.1
if (STEFANIE =1) {
goto tap_stefanie_school_trip_1
} elif (STEFANIE =2) {
goto tap_stefanie_school_trip_2
} else {
goto tap_stefanie_school_trip_3
}
}