Help with arrows dressing game + plus size body

Hi!

Could someone, please, give me some light on how to configure Dara’s template with arrows in the dressing game to include the body plus size as well?

Here's Dara's template:

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_3
} “RIGHT_ARROW” {
&ui CHOOSE opacity 0.8 in 0.1
goto tap_outfit_1
}

label tap_outfit_1
@CHARACTER =1
################## CHANGE OUTFIT NAME TO YOUR 1ST OUTFIT ###############
@CHARACTER changes into OUTFIT_1

tappable
“LEFT_ARROW” {
goto tap_outfit_3
} “RIGHT_ARROW” {
goto tap_outfit_2
} “CHOOSE” {
goto tap_outfit_choose
}

label tap_outfit_2
@CHARACTER =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@CHARACTER changes into OUTFIT_2

tappable
“LEFT_ARROW” {
goto tap_outfit_1
} “RIGHT_ARROW” {
goto tap_outfit_3
} “CHOOSE” {
goto tap_outfit_choose
}

label tap_outfit_3
@CHARACTER =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@CHARACTER changes into OUTFIT_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
@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 =1) {
goto tap_outfit_1
} elif (CHARACTER =2) {
goto tap_outfit_2
} else {
goto tap_outfit_3
}
}

ARROWS DRESSING GAME - 3 OUTFITS }

2 Likes

When you’re coding the clothing change for the character, try something like this:
(I’m using gains here. plus_body & generic_body are the gains I usually use. ALSO NOTE: this would not be the code you would use if you have two separate branches for a generic body and a plus sized body.)

Sample Code

if (plus_body) {
@PLUSFEMALE changes into plus_outfit_1
@GENERICFEMALE becomes PLUSFEMALE
} else {
@GENERICFEMALE changes into generic_outfit_1
}

I hope that makes sense… If you need me to imbed it into Dara’s code just let me know and I can do that!

1 Like

Oh, ok!

I’ll try, then I’ll come back to you, ok?

Thanks in advance :heart:

1 Like

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