Remembering outfit choice for simple arrow dress up

Hey guys, so this is going to be really confusing but I’ll try my best to explain so I have used a script code from dara-amire. The code looks like this:

ARROWS DRESSING GAME - 3 OUTFITS {

&ui LEFTARROW create and ui LEFTARROW scales to 0.8 0.8 in 0 and ui LEFTARROW shifts to 7 187 in 0 and ui LEFTARROW opacity 1 in 0
&ui RIGHTARROW create and ui RIGHTARROW scales to 0.8 0.8 in 0 and ui RIGHTARROW shifts to 250 187 in 0 and ui RIGHTARROW opacity 1 in 0
&ui CHOICEB1 create and ui CHOICEB1 scales to 0.4 0.4 in 0 and ui CHOICEB1 shifts to 75 110 in 0 and ui CHOICEB1 opacity 0 in 0

tappable
“LEFTARROW” {
&ui CHOICEB1 opacity 0.8 in 0.1
goto tap_outfit_3
} “RIGHTARROW” {
&ui CHOICEB1 opacity 0.8 in 0.1
goto tap_outfit_1
}

label tap_outfit_1
@NEVAEH =1
################## CHANGE OUTFIT NAME TO YOUR 1ST OUTFIT ###############
@NEVAEH changes into nchurch

tappable
“LEFTARROW” {
goto tap_outfit_3
} “RIGHTARROW” {
goto tap_outfit_2
} “CHOICEB1” {
goto tap_outfit_CHOICEB1
}

label tap_outfit_2
@NEVAEH =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@NEVAEH changes into nchurch2

tappable
“LEFTARROW” {
goto tap_outfit_1
} “RIGHTARROW” {
goto tap_outfit_3
} “CHOICEB1” {
goto tap_outfit_CHOICEB1
}

label tap_outfit_3
@NEVAEH =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@NEVAEH changes into nchurch3

tappable
“LEFTARROW” {
goto tap_outfit_2
} “RIGHTARROW” {
goto tap_outfit_1
} “CHOICEB1” {
goto tap_outfit_CHOICEB1
}

label tap_outfit_CHOICEB1
&ui LEFTARROW opacity 0 in 0.1 and ui RIGHTARROW opacity 0 in 0.1 and ui CHOICEB1 opacity 0 in 0.1
@NEVAEH 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
@NEVAEH is kiss_blow_happy_atcamera
} “No, let me try the others” {
&NEVAEH starts idle
&ui LEFTARROW opacity 1 in 0.1 and ui RIGHTARROW opacity 1 in 0.1 and ui CHOICEB1 opacity 0.8 in 0.1
if (NEVAEH =1) {
goto tap_outfit_1
} elif (NEVAEH =2) {
goto tap_outfit_2
} else {
goto tap_outfit_3
}
}

ARROWS DRESSING GAME - 3 OUTFITS }

My question is I want to remember the outfit choice because there will be a quick flashback scene and after it will go back to the dialogue scene.

I tested it and it didn’t work, it chose the last outfit

Can you post your code?

The code for the dress-up code is in the first comment.

Here is the code I use to remember:

if (OUTFIT is “Outfit 1”) {

@NEVAEH changes into nchurch

} elif(OUTFIT is “Outfit 2”) {

@NEVAEH changes into nchurch2

}
else {

@NEVAEH changes into nchurch3

}

I see you’re already using gains in your OG code, so your second code should be:

if (NEVAEH= 1) {

@NEVAEH changes into nchurch

} elif(NEVAEH= 2) {

@NEVAEH changes into nchurch2

}
else {

@NEVAEH changes into nchurch3

}

1 Like

OMG thank you so much that really helped :smiling_face_with_three_hearts:

2 Likes

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