I need help with the love interests please!

so in my story i’m letting the reader choose the gender of the love interest. and i was running everything through, but when i pressed the girl love interest and went through, as soon as i pressed done the mc would pop up behind her, and then it the rest of the customization would go to the mc. sorry if this sounds confusing, but does anyone know how to help??

From what you’re saying, it sounds like somewhere in your customization script are lines of code that alter your MC’s character instead of your LI’s. (Ex. @.MC changes hair into Wavy Long)

If this is the case, I suggest doing this:

Step 1: Copy the script for the LI’s customization only onto a separate document (such as Google Docs)
Step 2: Press ctrl + f then type in your MC’s code name in the box (this will allow you to find all instances of your MC’s name)
Step 3: Change every instance of MC’s code name to your LI’s code name
Step 4: Copy and paste your script back into you Episode workspace

I hope this helps. Otherwise, you may want to post your script so that it is easier for people on Forums to find out what’s wrong.

Here’s my script so far.

EXT. BLUE - DAY

@pause for 1

@LAVENDER enters from left to screen center and LAVENDER does it while walk_neutral_loop

    LAVENDER (talk_greet_neutral)
Hi!

    LAVENDER (talk_excited_happy)
Thank you for choosing to read my story!

    LAVENDER (talk_neutral)
I'll let you go ahead and customize.

@LAVENDER exits right and LAVENDER does it while walk_neutral_loop

@JORDYN enters from left to screen center and JORDYN does it while walk_neutral_loop

    NARRATOR
This is Jordyn. You will be playing as her.

label female_custom_1

@JORDYN stands screen center and JORDYN faces right and JORDYN starts idle

    NARRATOR
What do you look like?

choice
“Skin Tone” {
goto fem_skin_1
} “Hair” {
goto fem_hair_1
} “Eyes” {
goto fem_eyes_1
} “Eyebrows” {
goto fem_brows_1
} “Face” {
goto fem_face_1
} “Nose” {
goto fem_nose_1
} “Lips” {
goto fem_mouth_1
} “This is perfect!” {
goto female_1_end
}

####################### SKIN COLOR #######################

label fem_skin_1

    NARRATOR
All skin tones.

choice
“Neutral Shades” {
goto fem_neutralskin_1
} “Rose Shades” {
goto fem_roseskin_1
} “Gold Shades” {
goto fem_goldskin_1
} “Copper Shades” {
goto fem_copperskin_1
} “Ash Shades” {
goto fem_ashskin_1
} “Done” {
goto female_custom_1
}

label fem_neutralskin_1

    NARRATOR
Neutral skin tones.

choice [shouldPaginate: YES]
“Neutral 00” {
@JORDYN changes bodyColor into Neutral 00
goto fem_neutralskin_1
} “Neutral 01” {
@JORDYN changes bodyColor into Neutral 01
goto fem_neutralskin_1
} “Neutral 02” {
@JORDYN changes bodyColor into Neutral 02
goto fem_neutralskin_1
} “Neutral 03” {
@JORDYN changes bodyColor into Neutral 03
goto fem_neutralskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Neutral 04” {
@JORDYN changes bodyColor into Neutral 04
goto fem_neutralskin_1
} “Neutral 05” {
@JORDYN changes bodyColor into Neutral 05
goto fem_neutralskin_1
} “Neutral 06” {
@JORDYN changes bodyColor into Neutral 06
goto fem_neutralskin_1
} “Neutral 07” {
@JORDYN changes bodyColor into Neutral 07
goto fem_neutralskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Neutral 08” {
@JORDYN changes bodyColor into Neutral 08
goto fem_neutralskin_1
} “Neutral 09” {
@JORDYN changes bodyColor into Neutral 09
goto fem_neutralskin_1
} “Neutral 10” {
@JORDYN changes bodyColor into Neutral 10
goto fem_neutralskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}

label fem_roseskin_1

    NARRATOR
Rose skin tones.

choice [shouldPaginate: YES]
“Rose 00” {
@JORDYN changes bodyColor into Rose 00
goto fem_roseskin_1
} “Rose 01” {
@JORDYN changes bodyColor into Rose 01
goto fem_roseskin_1
} “Rose 02” {
@JORDYN changes bodyColor into Rose 02
goto fem_roseskin_1
} “Rose 03” {
@JORDYN changes bodyColor into Rose 03
goto fem_roseskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Rose 04” {
@JORDYN changes bodyColor into Rose 04
goto fem_roseskin_1
} “Rose 05” {
@JORDYN changes bodyColor into Rose 05
goto fem_roseskin_1
} “Rose 06” {
@JORDYN changes bodyColor into Rose 06
goto fem_roseskin_1
} “Rose 07” {
@JORDYN changes bodyColor into Rose 07
goto fem_roseskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Rose 08” {
@JORDYN changes bodyColor into Rose 08
goto fem_roseskin_1
} “Rose 09” {
@JORDYN changes bodyColor into Rose 09
goto fem_roseskin_1
} “Rose 10” {
@JORDYN changes bodyColor into Rose 10
goto fem_roseskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}

label fem_goldskin_1

    NARRATOR
Gold skin tones.

choice [shouldPaginate: YES]
“Gold 00” {
@JORDYN changes bodyColor into Gold 00
goto fem_goldskin_1
} “Gold 01” {
@JORDYN changes bodyColor into Gold 01
goto fem_goldskin_1
} “Gold 02” {
@JORDYN changes bodyColor into Gold 02
goto fem_goldskin_1
} “Gold 03” {
@JORDYN changes bodyColor into Gold 03
goto fem_goldskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Gold 04” {
@JORDYN changes bodyColor into Gold 04
goto fem_goldskin_1
} “Gold 05” {
@JORDYN changes bodyColor into Gold 05
goto fem_goldskin_1
} “Gold 06” {
@JORDYN changes bodyColor into Gold 06
goto fem_goldskin_1
} “Gold 07” {
@JORDYN changes bodyColor into Gold 07
goto fem_goldskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Gold 08” {
@JORDYN changes bodyColor into Gold 08
goto fem_goldskin_1
} “Gold 09” {
@JORDYN changes bodyColor into Gold 09
goto fem_goldskin_1
} “Gold 10” {
@JORDYN changes bodyColor into Gold 10
goto fem_goldskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}

label fem_copperskin_1

    NARRATOR
Copper skin tones.

choice [shouldPaginate: YES]
“Copper 00” {
@JORDYN changes bodyColor into Copper 00
goto fem_copperskin_1
} “Copper 01” {
@JORDYN changes bodyColor into Copper 01
goto fem_copperskin_1
} “Copper 02” {
@JORDYN changes bodyColor into Copper 02
goto fem_copperskin_1
} “Copper 03” {
@JORDYN changes bodyColor into Copper 03
goto fem_copperskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Copper 04” {
@JORDYN changes bodyColor into Copper 04
goto fem_copperskin_1
} “Copper 05” {
@JORDYN changes bodyColor into Copper 05
goto fem_copperskin_1
} “Copper 06” {
@JORDYN changes bodyColor into Copper 06
goto fem_copperskin_1
} “Copper 07” {
@JORDYN changes bodyColor into Copper 07
goto fem_copperskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Copper 08” {
@JORDYN changes bodyColor into Copper 08
goto fem_copperskin_1
} “Copper 09” {
@JORDYN changes bodyColor into Copper 09
goto fem_copperskin_1
} “Copper 10” {
@JORDYN changes bodyColor into Copper 10
goto fem_copperskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}

label fem_ashskin_1

    NARRATOR
Ash skin tones.

choice [shouldPaginate: YES]
“Ash 00” {
@JORDYN changes bodyColor into Ash 00
goto fem_ashskin_1
} “Ash 01” {
@JORDYN changes bodyColor into Ash 01
goto fem_ashskin_1
} “Ash 02” {
@JORDYN changes bodyColor into Ash 02
goto fem_ashskin_1
} “Ash 03” {
@JORDYN changes bodyColor into Ash 03
goto fem_ashskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Ash 04” {
@JORDYN changes bodyColor into Ash 04
goto fem_ashskin_1
} “Ash 05” {
@JORDYN changes bodyColor into Ash 05
goto fem_ashskin_1
} “Ash 06” {
@JORDYN changes bodyColor into Ash 06
goto fem_ashskin_1
} “Ash 07” {
@JORDYN changes bodyColor into Ash 07
goto fem_ashskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Ash 08” {
@JORDYN changes bodyColor into Ash 08
goto fem_ashskin_1
} “Ash 09” {
@JORDYN changes bodyColor into Ash 09
goto fem_ashskin_1
} “Ash 10” {
@JORDYN changes bodyColor into Ash 10
goto fem_ashskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}

####################### EYEBROWS #######################

label fem_brows_1

    NARRATOR
Eyebrow shapes.

choice [shouldPaginate: YES]
“Arched Natural”{
@JORDYN changes eyebrows into Arched Natural
goto fem_brows_1
}“Arched Thick”{
@JORDYN changes eyebrows into Arched Thick Styled
goto fem_brows_1
}“Arched Thin”{
@JORDYN changes eyebrows into Arched Thin
goto fem_brows_1
}“Arched Thin High”{
@JORDYN changes eyebrows into Arched Thin High
goto fem_brows_1
} “Change Color” {
goto fem_browscolor_1
} “Done”{
goto female_custom_1
}
“Round Medium”{
@JORDYN changes eyebrows into Round Medium
goto fem_brows_1
}“Round Thick”{
@JORDYN changes eyebrows into Round Thick
goto fem_brows_1
}“Round Thin High”{
@JORDYN changes eyebrows into Round Thin High
goto fem_brows_1
}“Straight Medium”{
@JORDYN changes eyebrows into Straight Medium
goto fem_brows_1
} “Change Color” {
goto fem_browscolor_1
} “Done”{
goto female_custom_1
}
“Arched Natural Scar”{
@JORDYN changes eyebrows into Arched Natural Scar
goto fem_brows_1
}“High Arch Angled”{
@JORDYN changes eyebrows into High Arch Angled
goto fem_brows_1
}“Arched Short”{
@JORDYN changes eyebrows into Arched Short
goto fem_brows_1
}“Bushy Thick”{
@JORDYN changes eyebrows into Bushy Thick
goto fem_brows_1
} “Change Color” {
goto fem_browscolor_1
} “Done”{
goto female_custom_1
}

####################### EYEBROW COLOR #######################

label fem_browscolor_1

    NARRATOR
Eyebrow colors.

choice [shouldPaginate: YES]
“Dirty Blonde” {
@JORDYN changes eyebrowsColor into Dirty Blonde
goto fem_browscolor_1
} “Honey Blonde” {
@JORDYN changes eyebrowsColor into Honey Blonde
goto fem_browscolor_1
} “Platinum Blonde” {
@JORDYN changes eyebrowsColor into Platinum Blonde
goto fem_browscolor_1
} “Strawberry Blonde” {
@JORDYN changes eyebrowsColor into Strawberry Blonde
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
“Blonde Medium” {
@JORDYN changes eyebrowsColor into Blonde Medium
goto fem_browscolor_1
} “Chestnut Brown” {
@JORDYN changes eyebrowsColor into Chestnut Brown
goto fem_browscolor_1
} “Dark Brown” {
@JORDYN changes eyebrowsColor into Dark Brown
goto fem_browscolor_1
} “Deep Brown” {
@JORDYN changes eyebrowsColor into Deep Brown
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
“Light Brown” {
@JORDYN changes eyebrowsColor into Light Brown
goto fem_browscolor_1
} “Dark Black” {
@JORDYN changes eyebrowsColor into Black Dark
goto fem_browscolor_1
} “Jet Black” {
@JORDYN changes eyebrowsColor into blackJet
goto fem_browscolor_1
} “Light Pink” {
@JORDYN changes eyebrowsColor into Pink Lt
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
“Pastel Lilac” {
@JORDYN changes eyebrowsColor into Purple Lilac
goto fem_browscolor_1
} “Mint” {
@JORDYN changes eyebrowsColor into Green Mint
goto fem_browscolor_1
} “Ginger Red” {
@JORDYN changes eyebrowsColor into Ginger Red
goto fem_browscolor_1
} “Copper Red” {
@JORDYN changes eyebrowsColor into Copper Red
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
“Gray” {
@JORDYN changes eyebrowsColor into Gray
goto fem_browscolor_1
} “White” {
@JORDYN changes eyebrowsColor into White
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}

####################### FACE SHAPE #######################

label fem_face_1

    NARRATOR
Face shapes.

choice [shouldPaginate: YES]
“Diamond” {
@JORDYN changes face into Diamond
goto fem_face_1
} “Long Diamond” {
@JORDYN changes face into Diamond Long
goto fem_face_1
} “Defined Diamond” {
@JORDYN changes face into Diamond Defined Contour
goto fem_face_1
} “Defined Heart” {
@JORDYN changes face into Heart Defined
goto fem_face_1
} “Defined Squared” {
@JORDYN changes face into Square Defined
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Soft Heart” {
@JORDYN changes face into Heart Soft
goto fem_face_1
} “Defined Triangle” {
@JORDYN changes face into Triangle Defined
goto fem_face_1
} “Mature Square” {
@JORDYN changes face into Square Mature
goto fem_face_1
} “Mature Heart” {
@JORDYN changes face into Heart Mature
goto fem_face_1
} “Soft Round” {
@JORDYN changes face into Round Soft
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Square Soft” {
@JORDYN changes face into Square Soft
goto fem_face_1
} “Round Puffy” {
@JORDYN changes face into Round Puffy Cheek
goto fem_face_1
} “Heart Double Chin” {
@JORDYN changes face into Heart Mature Double Chin
goto fem_face_1
} “Round Double Chin” {
@JORDYN changes face into Round Double Chin
goto fem_face_1
} “Long Double Chin” {
@JORDYN changes face into Long Double Chin
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Square Youth” {
@JORDYN changes face into Square Youthful
goto fem_face_1
} “Square Aged” {
@JORDYN changes face into Square Aged
goto fem_face_1
} “Square Chiseled” {
@JORDYN changes face into Square Chiseled
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Triangle Chiseled” {
@JORDYN changes face into Triangle Chiseled
goto fem_face_1
}

####################### EYE SHAPE #######################

label fem_eyes_1

    NARRATOR
Eye shapes.

choice [shouldPaginate: YES]
“Round Wide” {
@JORDYN changes eyes into Round Downturned Wide
goto fem_eyes_1
} “Round Medium” {
@JORDYN changes eyes into Round Medium
goto fem_eyes_1
} “Sharp Almond” {
@JORDYN changes eyes into Sharp Almond
goto fem_eyes_1
} “Generic” {
@JORDYN changes eyes into Female Generic
goto fem_eyes_1
} “Change Color”{
goto fem_eyecolor_1
} “Done”{
goto female_custom_1
}
“Deepset Downturned” {
@JORDYN changes eyes into Deepset Downturned
goto fem_eyes_1
} “Deepset Wide” {
@JORDYN changes eyes into Deepset Upturned Wide
goto fem_eyes_1
} “Deepset Almond” {
@JORDYN changes eyes into Deepset Almond
goto fem_eyes_1
} “Monolid Defined” {
@JORDYN changes eyes into Monolid Defined
goto fem_eyes_1
} “Change Color”{
goto fem_eyecolor_1
} “Done”{
goto female_custom_1
}
“Monolid Slender” {
@JORDYN changes eyes into Monolid Slender
goto fem_eyes_1
} “Angular Slender” {
@JORDYN changes eyes into Angular Slender
goto fem_eyes_1
} “Almond Slender” {
@JORDYN changes eyes into Hooded Slender Almond
goto fem_eyes_1
} “Almond Slender Eyeliner” {
@JORDYN changes eyes into Hooded Slender Almond Eyeliner
goto fem_eyes_1
} “Change Color”{
goto fem_eyecolor_1
} “Done”{
goto female_custom_1
}
“Deepset Mature” {
@JORDYN changes eyes into Deepset Mature
goto fem_eyes_1
} “Deepset Smokey Eye” {
@JORDYN changes eyes into Deep Set False Lashes Smokey Eye
goto fem_eyes_1
}“Heavy Lid Upturned” {
@JORDYN changes eyes into Heavy Lid Upturned
goto fem_eyes_1
} “Delicate Almond” {
@JORDYN changes eyes into Delicate Almond
goto fem_eyes_1
} “Change Color”{
goto fem_eyecolor_1
} “Done”{
goto female_custom_1
}
“Deepset Downturned Wide” {
@JORDYN changes eyes into Deepset Downturned Wide
goto fem_eyes_1
} “Done”{
goto female_custom_1
} “Change Color”{
goto fem_eyecolor_1
}

####################### EYE COLOR #######################

label fem_eyecolor_1

    NARRATOR
Eye colors.

choice [shouldPaginate: YES]
“Black” {
@JORDYN changes eyesColor into Brown Black
goto fem_eyecolor_1
} “Dark Brown” {
@JORDYN changes eyesColor into Brown Dark
goto fem_eyecolor_1
} “Light Brown” {
@JORDYN changes eyesColor into Brown Light
goto fem_eyecolor_1
} “Pale Brown” {
@JORDYN changes eyesColor into Brown Pale
goto fem_eyecolor_1
} “Eye Shapes” {
goto fem_eyes_1
} “Done”{
goto female_custom_1
}
“Ice Blue” {
@JORDYN changes eyesColor into Ice Blue
goto fem_eyecolor_1
} “Aqua Blue” {
@JORDYN changes eyesColor into Blue Aqua
goto fem_eyecolor_1
} “Deep Blue” {
@JORDYN changes eyesColor into Blue Deep
goto fem_eyecolor_1
} “Blue Green” {
@JORDYN changes eyesColor into Blue Green
goto fem_eyecolor_1
} “Eye Shapes” {
goto fem_eyes_1
} “Done”{
goto female_custom_1
}
“Silver” {
@JORDYN changes eyesColor into Grey Cool
goto fem_eyecolor_1
} “Green” {
@JORDYN changes eyesColor into Green Emerald
goto fem_eyecolor_1
} “Hazel” {
@JORDYN changes eyesColor into Hazel
goto fem_eyecolor_1
} “Dark Hazel” {
@JORDYN changes eyesColor into Hazel Dark
goto fem_eyecolor_1
} “Eye Shapes” {
goto fem_eyes_1
} “Done”{
goto female_custom_1
}
“Red” {
@JORDYN changes eyesColor into Red
goto fem_eyecolor_1
} “Violet” {
@JORDYN changes eyesColor into Violet
goto fem_eyecolor_1
} “Eye Shapes” {
goto fem_eyes_1
} “Done”{
goto female_custom_1
}

####################### MOUTH SHAPE #######################

label fem_mouth_1

    NARRATOR
Lip shapes.

choice [shouldPaginate: YES]
“Full Heart” {
@JORDYN changes mouth into Full Heart Pouty
goto fem_mouth_1
}“Full Round” {
@JORDYN changes mouth into Full Round Pouty
goto fem_mouth_1
}“Medium Heart” {
@JORDYN changes mouth into Medium Heart Natural
goto fem_mouth_1
}“Medium Thin” {
@JORDYN changes mouth into Medium Thin
goto fem_mouth_1
}“Change Color”{
goto fem_mouthcolor_1
} “Done”{
goto female_custom_1
}
“Thin Heart” {
@JORDYN changes mouth into Thin Heart
goto fem_mouth_1
}“Small Heart” {
@JORDYN changes mouth into Small Heart
goto fem_mouth_1
}“Flat Round” {
@JORDYN changes mouth into Full Round Flat Top Skin
goto fem_mouth_1
}“Medium Downturned” {
@JORDYN changes mouth into Medium Downturned Pout
goto fem_mouth_1
}“Change Color”{
goto fem_mouthcolor_1
} “Done”{
goto female_custom_1
}
“Full Flat Top” {
@JORDYN changes mouth into Full Flat Top Pouty
goto fem_mouth_1
}“Full Wide” {
@JORDYN changes mouth into Full Wide
goto fem_mouth_1
}“Heart Shaped” {
@JORDYN changes mouth into Heart Shaped Pout
goto fem_mouth_1
}“Heart with Braces” {
@JORDYN changes mouth into Heart Shaped Pout Braces
goto fem_mouth_1
}“Change Color”{
goto fem_mouthcolor_1
} “Done”{
goto female_custom_1
}

####################### MOUTH COLOR #######################

label fem_mouthcolor_1

    NARRATOR
All lip colors.

choice
“Natural” {
goto fem_NaturalColors_1
} “Gloss” {
goto fem_GlossColors_1
} “Matte” {
goto fem_MatteColors_1
} “Done” {
goto female_custom_1
} “Lip Shapes” {
goto fem_mouth_1
}

label fem_NaturalColors_1

    NARRATOR
Natural lip colors.

choice [shouldPaginate: YES]
“Fair Rose” {
@JORDYN changes mouthColor into Fair Rose Matte
goto fem_NaturalColors_1
} “Fair Neutral” {
@JORDYN changes mouthColor into Fair Neutral Matte
goto fem_NaturalColors_1
} “Fair Gold” {
@JORDYN changes mouthColor into Fair Gold Matte
goto fem_NaturalColors_1
} “Beige Light Gold” {
@JORDYN changes mouthColor into Beige Light Gold Matte
goto fem_NaturalColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Beige Gold” {
@JORDYN changes mouthColor into Beige Gold Matte
goto fem_NaturalColors_1
} “Beige Rose” {
@JORDYN changes mouthColor into Beige Rose
goto fem_NaturalColors_1
} “Beige Deep Neutral” {
@JORDYN changes mouthColor into Beige Deep Neutral
goto fem_NaturalColors_1
} “Tan Deep Gold” {
@JORDYN changes mouthColor into Tan Deep Gold
goto fem_NaturalColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Tan Deep Neutral” {
@JORDYN changes mouthColor into Tan Deep Neutral
goto fem_NaturalColors_1
} “Brown Neutral” {
@JORDYN changes mouthColor into Brown Neutral
goto fem_NaturalColors_1
} “Brown Gold” {
@JORDYN changes mouthColor into Brown Gold
goto fem_NaturalColors_1
} “Brown Deep Gold” {
@JORDYN changes mouthColor into Brown Deep Gold
goto fem_NaturalColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Brown Deep Rose” {
@JORDYN changes mouthColor into Brown Deep Rose
goto fem_NaturalColors_1
} “Done” {
goto female_custom_1
} “Try Other Colors” {
goto fem_mouthcolor_1
}

label fem_GlossColors_1

    NARRATOR
Gloss lipstick colors.

choice [shouldPaginate: YES]
“Peach” {
@JORDYN changes mouthColor into Peach Gloss
goto fem_GlossColors_1
} “Light Peach” {
@JORDYN changes mouthColor into Pink Peach Lt Gloss
goto fem_GlossColors_1
} “Beige Pink” {
@JORDYN changes mouthColor into Pink Beige Gloss
goto fem_GlossColors_1
} “Medium Pink” {
@JORDYN changes mouthColor into Pink Medium Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Warm Pink” {
@JORDYN changes mouthColor into Pink Warm Gloss
goto fem_GlossColors_1
} “Hot Pink” {
@JORDYN changes mouthColor into Pink Hot Gloss
goto fem_GlossColors_1
} “Deep Pink” {
@JORDYN changes mouthColor into Pink Deep Gloss
goto fem_GlossColors_1
} “Pink Peach” {
@JORDYN changes mouthColor into Pink Peach Medium Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Neutral Nude” {
@JORDYN changes mouthColor into Neutral Medium Nude Gloss
goto fem_GlossColors_1
} “Light Nude” {
@JORDYN changes mouthColor into Rose Light Nude Gloss
goto fem_GlossColors_1
} “Medium Nude” {
@JORDYN changes mouthColor into Rose Medium Nude Gloss
goto fem_GlossColors_1
} “Dark Nude” {
@JORDYN changes mouthColor into Rose Dark Nude Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Rose” {
@JORDYN changes mouthColor into Rose Gloss
goto fem_GlossColors_1
} “Mauve” {
@JORDYN changes mouthColor into Mauve Gloss
goto fem_GlossColors_1
} “Pastel Purple” {
@JORDYN changes mouthColor into Purple Pastel Gloss
goto fem_GlossColors_1
} “Deep Purple” {
@JORDYN changes mouthColor into Purple Deep Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Red” {
@JORDYN changes mouthColor into Red Gloss
goto fem_GlossColors_1
} “Deep Red” {
@JORDYN changes mouthColor into Red Deep Gloss
goto fem_GlossColors_1
} “Plum” {
@JORDYN changes mouthColor into Plum Gloss
goto fem_GlossColors_1
} “Violet” {
@JORDYN changes mouthColor into Violet Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Blood Orange” {
@JORDYN changes mouthColor into Blood Orange Gloss
goto fem_GlossColors_1
} “Red Garnet” {
@JORDYN changes mouthColor into Red Garnet Gloss
goto fem_GlossColors_1
} “Blackberry” {
@JORDYN changes mouthColor into Blackberry Gloss
goto fem_GlossColors_1
} “Pink Cashmere” {
@JORDYN changes mouthColor into Pink Cashmere Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Ash Deep” {
@JORDYN changes mouthColor into Ash Deep Gloss
goto fem_GlossColors_1
} “Dark Mauve” {
@JORDYN changes mouthColor into Dark Mauve Gloss
goto fem_GlossColors_1
} “Dark Amethyst” {
@JORDYN changes mouthColor into Dark Amethyst Gloss
goto fem_GlossColors_1
} “Royal Blue” {
@JORDYN changes mouthColor into Royal Blue Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Dark Apricot” {
@JORDYN changes mouthColor into Dark Apricot Gloss
goto fem_GlossColors_1
} “Copper Deep” {
@JORDYN changes mouthColor into Copper Deep Gloss
goto fem_GlossColors_1
} “Gold Deep” {
@JORDYN changes mouthColor into Gold Deep Gloss
goto fem_GlossColors_1
} “Black” {
@JORDYN changes mouthColor into Black Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}

label fem_MatteColors_1

    NARRATOR
Matte lipstick colors.

choice [shouldPaginate: YES]
“Peach” {
@JORDYN changes mouthColor into Peach Matte
goto fem_MatteColors_1
} “Light Peach” {
@JORDYN changes mouthColor into Pink Peach Light Matte
goto fem_MatteColors_1
} “Beige Pink” {
@JORDYN changes mouthColor into Pink Beige Matte
goto fem_MatteColors_1
} “Medium Pink” {
@JORDYN changes mouthColor into Pink Medium Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Warm Pink” {
@JORDYN changes mouthColor into Pink Warm Matte
goto fem_MatteColors_1
} “Hot Pink” {
@JORDYN changes mouthColor into Pink Hot Matte
goto fem_MatteColors_1
} “Deep Pink” {
@JORDYN changes mouthColor into Pink Deep Matte
goto fem_MatteColors_1
} “Pink Peach” {
@JORDYN changes mouthColor into Pink Peach Medium Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Neutral Nude” {
@JORDYN changes mouthColor into Neutral Medium Nude Matte
goto fem_MatteColors_1
} “Light Nude” {
@JORDYN changes mouthColor into Rose Light Nude Matte
goto fem_MatteColors_1
} “Medium Nude” {
@JORDYN changes mouthColor into Rose Medium Nude Matte
goto fem_MatteColors_1
} “Dark Nude” {
@JORDYN changes mouthColor into Rose Dark Nude Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Rose” {
@JORDYN changes mouthColor into Rose Matte
goto fem_MatteColors_1
} “Mauve” {
@JORDYN changes mouthColor into Mauve Matte
goto fem_MatteColors_1
} “Pastel Purple” {
@JORDYN changes mouthColor into Purple Pastel Matte
goto fem_MatteColors_1
} “Deep Purple” {
@JORDYN changes mouthColor into Purple Deep Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Red” {
@JORDYN changes mouthColor into Red Matte
goto fem_MatteColors_1
} “Deep Red” {
@JORDYN changes mouthColor into Red Deep Matte
goto fem_MatteColors_1
} “Plum” {
@JORDYN changes mouthColor into Plum Matte
goto fem_MatteColors_1
} “Violet” {
@JORDYN changes mouthColor into Violet Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Blood Orange” {
@JORDYN changes mouthColor into Blood Orange Matte
goto fem_MatteColors_1
} “Red Garnet” {
@JORDYN changes mouthColor into Red Garnet Matte
goto fem_MatteColors_1
} “Blackberry” {
@JORDYN changes mouthColor into Blackberry Matte
goto fem_MatteColors_1
} “Pink Cashmere” {
@JORDYN changes mouthColor into Pink Cashmere Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Ash Deep” {
@JORDYN changes mouthColor into Ash Deep Matte
goto fem_MatteColors_1
} “Dark Mauve” {
@JORDYN changes mouthColor into Dark Mauve Matte
goto fem_MatteColors_1
} “Dark Amethyst” {
@JORDYN changes mouthColor into Dark Amethyst Matte
goto fem_MatteColors_1
} “Royal Blue” {
@JORDYN changes mouthColor into Royal Blue Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Dark Apricot” {
@JORDYN changes mouthColor into Dark Apricot Matte
goto fem_MatteColors_1
} “Copper Deep” {
@JORDYN changes mouthColor into Copper Deep Matte
goto fem_MatteColors_1
} “Gold Deep” {
@JORDYN changes mouthColor into Gold Deep Matte
goto fem_MatteColors_1
} “Black” {
@JORDYN changes mouthColor into Black Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}

####################### NOSE SHAPE #######################

label fem_nose_1

    NARRATOR
Nose shapes.

choice [shouldPaginate: YES]
“Defined Natural” {
@JORDYN changes nose into Defined Natural
goto fem_nose_1
} “Grecian Soft” {
@JORDYN changes nose into Grecian Soft
goto fem_nose_1
} “Round Broad” {
@JORDYN changes nose into Round Broad
goto fem_nose_1
} “Round Button” {
@JORDYN changes nose into Round Button
goto fem_nose_1
} “Round Button Upturned” {
@JORDYN changes nose into Round Button Upturned
goto fem_nose_1
} “Done”{
goto female_custom_1
}
“Round Downturned” {
@JORDYN changes nose into Round Downturned
goto fem_nose_1
} “Round Flared Upturned” {
@JORDYN changes nose into Round Flared Upturned
goto fem_nose_1
} “Round Flared Downturned” {
@JORDYN changes nose into Round Flared Downturned
goto fem_nose_1
} “Pointed Downturned” {
@JORDYN changes nose into Pointed Downturned
goto fem_nose_1
} “Broad Wide” {
@JORDYN changes nose into Broad Wide
goto fem_nose_1
} “Done”{
goto female_custom_1
}
“Round Flared Downturned Broad” {
@JORDYN changes nose into Round Flared Downturned Broad
goto fem_nose_1
} “Round Button Wide” {
@JORDYN changes nose into Round Button Wide
goto fem_nose_1
} “Round Broad Downturned” {
@JORDYN changes nose into Round Broad Downturned
goto fem_nose_1
} “Done”{
goto female_custom_1
}

####################### HAIR STYLE #######################

label fem_hair_1

    NARRATOR
All hairstyles.

choice
“Short Hair”{
goto fem_hairShort_1
}“Mid-length Hair”{
goto fem_hairMedium_1
}“Long Hair”{
goto fem_hairLong_1
}“Styled Hair”{
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}

label fem_hairShort_1

    NARRATOR
Short hairstyles.

choice [shouldPaginate: YES]
“Afro” {
@JORDYN changes hair into Afro
goto fem_hairShort_1
} “Short Afro” {
@JORDYN changes hair into Short Afro
goto fem_hairShort_1
} “Classic Bob” {
@JORDYN changes hair into Classic Bob
goto fem_hairShort_1
} “Curly Bob” {
@JORDYN changes hair into Curly Bob
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Faux Hawk” {
@JORDYN changes hair into Long Faux Hawk Solid
goto fem_hairShort_1
}“Fade” {
@JORDYN changes hair into Short Curly Fade
goto fem_hairShort_1
}“Pixie” {
@JORDYN changes hair into Short Pixie
goto fem_hairShort_1
}“Punk Pixie” {
@JORDYN changes hair into Punk Pixie
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Short Wavy” {
@JORDYN changes hair into Short Wavy Hair Solid
goto fem_hairShort_1
}“Blunt Bangs” {
@JORDYN changes hair into Blunt Bangs Short
goto fem_hairShort_1
} “Wavy Side Shaved” {
@JORDYN changes hair into Short Wavy Side Shave
goto fem_hairShort_1
}“Curly Blow Out” {
@JORDYN changes hair into Short Curly Blow Out
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Crew Cut” {
@JORDYN changes hair into Crew Cut
goto fem_hairShort_1
}“Short Fringe” {
@JORDYN changes hair into Short Layered Fringe
goto fem_hairShort_1
}“Straight Tucked” {
@JORDYN changes hair into Short Straight Tucked
goto fem_hairShort_1
}“Emo Pixie” {
@JORDYN changes hair into Emo Pixie
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Bantu Knots” {
@JORDYN changes hair into Bantu Knots
goto fem_hairShort_1
}“Conservative Cut” {
@JORDYN changes hair into Conservative Cut
goto fem_hairShort_1
}“Parted Bangs” {
@JORDYN changes hair into Long Bang Short Hair
goto fem_hairShort_1
}“Side Part Curly” {
@JORDYN changes hair into Side Part Curly Asymmetrical
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Short Flipped” {
@JORDYN changes hair into Short Flipped Wavy Solid
goto fem_hairShort_1
}“Type 4 Afro” {
@JORDYN changes hair into Type 4 Afro
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}

label fem_hairMedium_1

    NARRATOR
Medium hairstyles.

choice [shouldPaginate: YES]
“Braided” {
@JORDYN changes hair into Medium Braided
goto fem_hairMedium_1
}“Medium Dreadlocks” {
@JORDYN changes hair into Medium Dreadlocks
goto fem_hairMedium_1
}“Hair Flip” {
@JORDYN changes hair into Hair Flip
goto fem_hairMedium_1
}“Straight” {
@JORDYN changes hair into Straight Medium
goto fem_hairMedium_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Lob Bangs” {
@JORDYN changes hair into Lob Bangs Blunt
goto fem_hairMedium_1
}“Overgrown Bangs” {
@JORDYN changes hair into Medium Straight Overgrown Bangs
goto fem_hairMedium_1
}“Wavy Ombre” {
@JORDYN changes hair into Short Wavy Ombre
goto fem_hairMedium_1
}“Medium Curly” {
@JORDYN changes hair into Medium Curly Solid
goto fem_hairMedium_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Voluminous Curls” {
@JORDYN changes hair into Voluminous Curls
goto fem_hairMedium_1
} “Parted Wavy” {
@JORDYN changes hair into Short Wavy Asymmetrical
goto fem_hairMedium_1
} “Wavy Side Curls” {
@JORDYN changes hair into Wavy Side Curls
goto fem_hairMedium_1
} “Layered Wavy Bob” {
@JORDYN changes hair into Layered Wavy Bob
goto fem_hairMedium_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Straight Down” {
@JORDYN changes hair into Medium Straight Down
goto fem_hairMedium_1
} “Shoulder Curly” {
@JORDYN changes hair into Medium Shoulder Curly
goto fem_hairMedium_1
} “Natural Afro” {
@JORDYN changes hair into Natural Afro
goto fem_hairMedium_1
} “3A Shoulder Curls” {
@JORDYN changes hair into 3A Shoulder Length Curls Hair
goto fem_hairMedium_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}

label fem_hairLong_1

    NARRATOR
Long hairstyles.

choice [shouldPaginate: YES]
“Beach Wave” {
@JORDYN changes hair into Beach Wave Hair
goto fem_hairLong_1
}“Long Braided” {
@JORDYN changes hair into Long Braided
goto fem_hairLong_1
}“Long Dreadlocks” {
@JORDYN changes hair into Long Dreadlocks
goto fem_hairLong_1
}“Feathered” {
@JORDYN changes hair into Long Feathered
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Long Blunt Bangs” {
@JORDYN changes hair into Long Straight Loose Bangs Blunt Solid
goto fem_hairLong_1
}“Sideswept Bangs” {
@JORDYN changes hair into Long Straight Loose Bangs Sideswept Solid
goto fem_hairLong_1
}“Straight” {
@JORDYN changes hair into Long Straight Loose Solid
goto fem_hairLong_1
}“Wavy Long” {
@JORDYN changes hair into Wavy Long
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Wavy Parted” {
@JORDYN changes hair into Long Wavy Parted Hair
goto fem_hairLong_1
}“Feathered Bangs” {
@JORDYN changes hair into Long Feathered Bangs Blunt
goto fem_hairLong_1
}“Braided Dreads Parted” {
@JORDYN changes hair into Dreads Braided
goto fem_hairLong_1
}“Long Voluminous Curls” {
@JORDYN changes hair into Long Voluminous Curls Loose
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Long Curls” {
@JORDYN changes hair into Long Curls
goto fem_hairLong_1
}“Wavy Princess Braid” {
@JORDYN changes hair into Long Down Wavy Princess Braid
goto fem_hairLong_1
}“Bouffant Wavy” {
@JORDYN changes hair into Bouffant Long Wavy
goto fem_hairLong_1
}“Loose Curls” {
@JORDYN changes hair into Long Loose Curls
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Wavy Blowout” {
@JORDYN changes hair into Long Wavy Blowout
goto fem_hairLong_1
}“Side Shave” {
@JORDYN changes hair into Long Side Shave
goto fem_hairLong_1
}“Scene Hair” {
@JORDYN changes hair into Scene Swoosh
goto fem_hairLong_1
}“Slicked Back” {
@JORDYN changes hair into Long Straight Slicked Back
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Thick Curls” {
@JORDYN changes hair into Long Thick Curls
goto fem_hairLong_1
}“Loose Bangs Sideswept” {
@JORDYN changes hair into Long Wavy Loose Bangs Sideswept
goto fem_hairLong_1
}“Layered Side Part” {
@JORDYN changes hair into Long Layered Side Part
goto fem_hairLong_1
}“Widows Peak” {
@JORDYN changes hair into Long Tapered Widows Peak
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Long Straight Wavy Parted Ends” {
@JORDYN changes hair into Long Straight Wavy Ends Parted
goto fem_hairLong_1
}“Locks” {
@JORDYN changes hair into Shoulder Length Locks Hair
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}

label fem_hairUp_1

    NARRATOR
Up-do hairstyles.

choice [shouldPaginate: YES]
“Braided Bun” {
@JORDYN changes hair into Braided Bun
goto fem_hairUp_1
}“Short Ponytail” {
@JORDYN changes hair into Short High Ponytail
goto fem_hairUp_1
}“Long Ponytail” {
@JORDYN changes hair into Long High Ponytail
goto fem_hairUp_1
}“Morning Updo” {
@JORDYN changes hair into Morning Updo
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Small Bun” {
@JORDYN changes hair into Small Bun
goto fem_hairUp_1
}“Double Dutch Braids” {
@JORDYN changes hair into Long Double Dutch Braids
goto fem_hairUp_1
}“Pinup Rolls” {
@JORDYN changes hair into Pinup Victory Rolls
goto fem_hairUp_1
}“Sleek Ponytail” {
@JORDYN changes hair into Sleek Ponytail
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Shoulder Braid” {
@JORDYN changes hair into Over Shoulder Braid
goto fem_hairUp_1
}“Full Pigtail” {
@JORDYN changes hair into Full Pigtail
goto fem_hairUp_1
}“Updo Braids” {
@JORDYN changes hair into Braids Updo
goto fem_hairUp_1
}“Double Buns” {
@JORDYN changes hair into Double Buns
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Double Afro Puffs” {
@JORDYN changes hair into Curly Double Afro Puffs
goto fem_hairUp_1
}“Curly Bun Half-up” {
@JORDYN changes hair into Medium Shoulder Curly Bun Hair
goto fem_hairUp_1
}“Messy Sock Bun” {
@JORDYN changes hair into Messy Sock Bun
goto fem_hairUp_1
}“Messy Ponytail” {
@JORDYN changes hair into Short Messy Pony Tail
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Blunt Bangs Ponytail” {
@JORDYN changes hair into Pony Tail Blunt Bangs
goto fem_hairUp_1
}“Side Swept Updo” {
@JORDYN changes hair into Side Swept Updo Long
goto fem_hairUp_1
}“Long Wavy Updo” {
@JORDYN changes hair into Updo Pony Wavy Long
goto fem_hairUp_1
}“Punk Hair” {
@JORDYN changes hair into Cropped Punk Cut
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Updo Low Bun” {
@JORDYN changes hair into Updo
goto fem_hairUp_1
}“Updo Curly Messy” {
@JORDYN changes hair into Updo Curly Messy
goto fem_hairUp_1
}“Updo Twist Bangs” {
@JORDYN changes hair into Updo High Twist Bangs Blunt
goto fem_hairUp_1
}“Spiral Pigtail” {
@JORDYN changes hair into High Spiral Pigtail Hair
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Updo Princess Braid” {
@JORDYN changes hair into Long Updo Wavy Princess Braid
goto fem_hairUp_1
}“Natural Curly Updo” {
@JORDYN changes hair into Natural Curly Pulled Updo Hair
goto fem_hairUp_1
}“Updo Curly Long” {
@JORDYN changes hair into Updo Curly Long
goto fem_hairUp_1
}“Long Curl Half Updo” {
@JORDYN changes hair into Long Curl Half Updo
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Braided Afro Bun” {
@JORDYN changes hair into Braided Afro Bun
goto fem_hairUp_1
}“Side Shave Braids” {
@JORDYN changes hair into Curly Braids Hair
goto fem_hairUp_1
}“High Wavy Pony Tail Over Shoulder” {
@JORDYN changes hair into High Wavy Pony Tail Over Shoulder Solid
goto fem_hairUp_1
}“Braided Curly Pony” {
@JORDYN changes hair into Braided Curly Pony
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Half Up Top Knot Ponytail” {
@JORDYN changes hair into Medium Half Up Top Knot Ponytail
goto fem_hairUp_1
}“Long Half Up Ponytail” {
@JORDYN changes hair into Long Half Up Ponytail Hair
goto fem_hairUp_1
}“Side Bang Double Bun” {
@JORDYN changes hair into Medium Side Bang Double Bun
goto fem_hairUp_1
}“Double Bun Half Down” {
@JORDYN changes hair into Double Bun Half Down Hair
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}

####################### HAIR COLOR #######################

label fem_haircolor_1

    NARRATOR
All hair colors.

choice
“Dark”{
goto fem_hairDark_1
}“Light” {
goto fem_hairLight_1
}“Dyed”{
goto fem_hairDye_1
}“Done”{
goto female_custom_1
} “Back to Styles” {
goto fem_hair_1
}

label fem_hairDark_1

    NARRATOR
Dark hair colors.

choice [shouldPaginate: YES]
“Light Brown” {
@JORDYN changes hairColor into Light Brown
goto fem_hairDark_1
}“Warm Brown” {
@JORDYN changes hairColor into Medium Warm Brown
goto fem_hairDark_1
}“Medium Brown” {
@JORDYN changes hairColor into Medium Brown
goto fem_hairDark_1
}“Chestnut Brown”{
@JORDYN changes hairColor into Chestnut Brown
goto fem_hairDark_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
“Dark Brown”{
@JORDYN changes hairColor into Dark Brown
goto fem_hairDark_1
}“Brunette Brown”{
@JORDYN changes hairColor into Brunette Brown
goto fem_hairDark_1
}“Ginger Red” {
@JORDYN changes hairColor into Ginger Red
goto fem_hairDark_1
}“Burgundy Red” {
@JORDYN changes hairColor into Burgundy Red
goto fem_hairDark_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
“Deep Brown” {
@JORDYN changes hairColor into Deep Brown
goto fem_hairDark_1
}“Brown Black” {
@JORDYN changes hairColor into Brown Black
goto fem_hairDark_1
}“Dark Black” {
@JORDYN changes hairColor into Black Dark
goto fem_hairDark_1
}“Jet Black” {
@JORDYN changes hairColor into Black Jet
goto fem_hairDark_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}

label fem_hairLight_1

    NARRATOR
Light hair colors.

choice [shouldPaginate: YES]
“Platinum Blonde” {
@JORDYN changes hairColor into Platinum Blonde
goto fem_hairLight_1
}“Dirty Blonde” {
@JORDYN changes hairColor into Dirty Blonde
goto fem_hairLight_1
}“Honey Blonde” {
@JORDYN changes hairColor into Honey Blonde
goto fem_hairLight_1
}“Strawberry Blonde” {
@JORDYN changes hairColor into Strawberry Blonde
goto fem_hairLight_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
“Medium Blonde” {
@JORDYN changes hairColor into Blonde Medium
goto fem_hairLight_1
}“Ash Blonde” {
@JORDYN changes hairColor into Ash Blonde
goto fem_hairLight_1
}“Peach Blonde” {
@JORDYN changes hairColor into Peach Blonde
goto fem_hairLight_1
}“Platinum White” {
@JORDYN changes hairColor into Platinum White
goto fem_hairLight_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}

label fem_hairDye_1

    NARRATOR
Dyed hair colors.

choice
“Pink/Purple” {
goto fem_hairDye_Pink_1
}“Blue/Green” {
goto fem_hairDye_Blue_1
}“Red/Yellow” {
goto fem_hairDye_Red_1
}“White/Grey” {
goto fem_hairDye_White_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}

label fem_hairDye_Pink_1

    NARRATOR
Pink and purple hair colors.

choice [shouldPaginate: YES]
“Hot Pink” {
@JORDYN changes hairColor into Hot Pink
goto fem_hairDye_Pink_1
} “Light Pink” {
@JORDYN changes hairColor into Pink Lt
goto fem_hairDye_Pink_1
} “Warm Pink” {
@JORDYN changes hairColor into Warm Pink
goto fem_hairDye_Pink_1
} “Rose Gold” {
@JORDYN changes hairColor into Rose Gold
goto fem_hairDye_Pink_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
“Purple” {
@JORDYN changes hairColor into Red Purple
goto fem_hairDye_Pink_1
} “Purple Lilac” {
@JORDYN changes hairColor into Purple Lilac
goto fem_hairDye_Pink_1
} “Plum” {
@JORDYN changes hairColor into Plum
goto fem_hairDye_Pink_1
} “Dark Purple” {
@JORDYN changes hairColor into Purple
goto fem_hairDye_Pink_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
“Pastel NARRATOR” {
@JORDYN changes hairColor into Pastel Purple Lavender
goto fem_hairDye_Pink_1
}“Done” {
goto female_custom_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}

label fem_hairDye_Blue_1

    NARRATOR
Blue and green hair colors.

choice [shouldPaginate: YES]
“Blue” {
@JORDYN changes hairColor into Blue
goto fem_hairDye_Blue_1
} “Light Blue” {
@JORDYN changes hairColor into Cornflower Blue
goto fem_hairDye_Blue_1
} “Aqua Blue” {
@JORDYN changes hairColor into Aqua Blue
goto fem_hairDye_Blue_1
} “Dark Blue” {
@JORDYN changes hairColor into Blue Black
goto fem_hairDye_Blue_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
“Green” {
@JORDYN changes hairColor into Green
goto fem_hairDye_Blue_1
} “Lime Green” {
@JORDYN changes hairColor into Yellow Green
goto fem_hairDye_Blue_1
} “Mint” {
@JORDYN changes hairColor into Mint
goto fem_hairDye_Blue_1
} “Aqua Green” {
@JORDYN changes hairColor into Aqua Green
goto fem_hairDye_Blue_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
“Pastel Blue” {
@JORDYN changes hairColor into Pastel Blue
goto fem_hairDye_Blue_1
} “Pastel Mint” {
@JORDYN changes hairColor into Pastel Mint
goto fem_hairDye_Blue_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}

label fem_hairDye_Red_1

    NARRATOR
Red, yellow, & orange hair colors.

choice [shouldPaginate: YES]
“Yellow” {
@JORDYN changes hairColor into Yellow
goto fem_hairDye_Red_1
} “Orange” {
@JORDYN changes hairColor into Orange
goto fem_hairDye_Red_1
} “Red” {
@JORDYN changes hairColor into Red
goto fem_hairDye_Red_1
} “Copper Red” {
@JORDYN changes hairColor into Copper Red
goto fem_hairDye_Red_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}

label fem_hairDye_White_1

    NARRATOR
White & grey hair colors.

choice [shouldPaginate: YES]
“Grey” {
@JORDYN changes hairColor into Cool Gray
goto fem_hairDye_White_1
} “Light Grey” {
@JORDYN changes hairColor into Aqua Gray
goto fem_hairDye_White_1
}“White” {
@JORDYN changes hairColor into Warm White
goto fem_hairDye_White_1
}“Ice” {
@JORDYN changes hairColor into Platinum Ice
goto fem_hairDye_White_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}

label female_1_end
NARRATOR
Are you happy with how you look?
choice
“Yes, I look gorgeous!” {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Customization Template Credit
@JORDYN is primp_neutral
} “No, I want to change something.” {
goto female_custom_1
}

@JORDYN exits right and JORDYN does it while walk_neutral_loop

label LI_gender

    NARRATOR
Who is your love interest?

choice
“A Girl.” {

    NARRATOR
Are you sure you she's a girl?

choice
“Yes!” {
gain LI_girl
goto female_LI_branch
} “No” {
goto LI_gender
}

} “A Boy.” {

    NARRATOR
Are you sure he's a boy?

choice
“Yes!” {
gain LI_boy
goto male_LI_branch
} “No” {
goto LI_gender
}
}

label female_LI_branch

@pause for 0
label female_custom_1

@PARKER GIRL stands screen center and PARKER GIRL faces right and PARKER GIRL starts idle

    NARRATOR
What does she look like?

choice
“Skin Tone” {
goto fem_skin_1
} “Hair” {
goto fem_hair_1
} “Eyes” {
goto fem_eyes_1
} “Eyebrows” {
goto fem_brows_1
} “Face” {
goto fem_face_1
} “Nose” {
goto fem_nose_1
} “Lips” {
goto fem_mouth_1
} “This is perfect!” {
goto female_1_end
}

####################### SKIN COLOR #######################

label fem_skin_1

    NARRATOR
All skin tones.

choice
“Neutral Shades” {
goto fem_neutralskin_1
} “Rose Shades” {
goto fem_roseskin_1
} “Gold Shades” {
goto fem_goldskin_1
} “Copper Shades” {
goto fem_copperskin_1
} “Ash Shades” {
goto fem_ashskin_1
} “Done” {
goto female_custom_1
}

label fem_neutralskin_1

    NARRATOR
Neutral skin tones.

choice [shouldPaginate: YES]
“Neutral 00” {
@PARKER GIRL changes bodyColor into Neutral 00
goto fem_neutralskin_1
} “Neutral 01” {
@PARKER GIRL changes bodyColor into Neutral 01
goto fem_neutralskin_1
} “Neutral 02” {
@PARKER GIRL changes bodyColor into Neutral 02
goto fem_neutralskin_1
} “Neutral 03” {
@PARKER GIRL changes bodyColor into Neutral 03
goto fem_neutralskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Neutral 04” {
@PARKER GIRL changes bodyColor into Neutral 04
goto fem_neutralskin_1
} “Neutral 05” {
@PARKER GIRL changes bodyColor into Neutral 05
goto fem_neutralskin_1
} “Neutral 06” {
@PARKER GIRL changes bodyColor into Neutral 06
goto fem_neutralskin_1
} “Neutral 07” {
@PARKER GIRL changes bodyColor into Neutral 07
goto fem_neutralskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Neutral 08” {
@PARKER GIRL changes bodyColor into Neutral 08
goto fem_neutralskin_1
} “Neutral 09” {
@PARKER GIRL changes bodyColor into Neutral 09
goto fem_neutralskin_1
} “Neutral 10” {
@PARKER GIRL changes bodyColor into Neutral 10
goto fem_neutralskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}

label fem_roseskin_1

    NARRATOR
Rose skin tones.

choice [shouldPaginate: YES]
“Rose 00” {
@PARKER GIRL changes bodyColor into Rose 00
goto fem_roseskin_1
} “Rose 01” {
@PARKER GIRL changes bodyColor into Rose 01
goto fem_roseskin_1
} “Rose 02” {
@PARKER GIRL changes bodyColor into Rose 02
goto fem_roseskin_1
} “Rose 03” {
@PARKER GIRL changes bodyColor into Rose 03
goto fem_roseskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Rose 04” {
@PARKER GIRL changes bodyColor into Rose 04
goto fem_roseskin_1
} “Rose 05” {
@PARKER GIRL changes bodyColor into Rose 05
goto fem_roseskin_1
} “Rose 06” {
@PARKER GIRL changes bodyColor into Rose 06
goto fem_roseskin_1
} “Rose 07” {
@PARKER GIRL changes bodyColor into Rose 07
goto fem_roseskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Rose 08” {
@PARKER GIRL changes bodyColor into Rose 08
goto fem_roseskin_1
} “Rose 09” {
@PARKER GIRL changes bodyColor into Rose 09
goto fem_roseskin_1
} “Rose 10” {
@PARKER GIRL changes bodyColor into Rose 10
goto fem_roseskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}

label fem_goldskin_1

    NARRATOR
Gold skin tones.

choice [shouldPaginate: YES]
“Gold 00” {
@PARKER GIRL changes bodyColor into Gold 00
goto fem_goldskin_1
} “Gold 01” {
@PARKER GIRL changes bodyColor into Gold 01
goto fem_goldskin_1
} “Gold 02” {
@PARKER GIRL changes bodyColor into Gold 02
goto fem_goldskin_1
} “Gold 03” {
@PARKER GIRL changes bodyColor into Gold 03
goto fem_goldskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Gold 04” {
@PARKER GIRL changes bodyColor into Gold 04
goto fem_goldskin_1
} “Gold 05” {
@PARKER GIRL changes bodyColor into Gold 05
goto fem_goldskin_1
} “Gold 06” {
@PARKER GIRL changes bodyColor into Gold 06
goto fem_goldskin_1
} “Gold 07” {
@PARKER GIRL changes bodyColor into Gold 07
goto fem_goldskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Gold 08” {
@PARKER GIRL changes bodyColor into Gold 08
goto fem_goldskin_1
} “Gold 09” {
@PARKER GIRL changes bodyColor into Gold 09
goto fem_goldskin_1
} “Gold 10” {
@PARKER GIRL changes bodyColor into Gold 10
goto fem_goldskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}

label fem_copperskin_1

    NARRATOR
Copper skin tones.

choice [shouldPaginate: YES]
“Copper 00” {
@PARKER GIRL changes bodyColor into Copper 00
goto fem_copperskin_1
} “Copper 01” {
@PARKER GIRL changes bodyColor into Copper 01
goto fem_copperskin_1
} “Copper 02” {
@PARKER GIRL changes bodyColor into Copper 02
goto fem_copperskin_1
} “Copper 03” {
@PARKER GIRL changes bodyColor into Copper 03
goto fem_copperskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Copper 04” {
@PARKER GIRL changes bodyColor into Copper 04
goto fem_copperskin_1
} “Copper 05” {
@PARKER GIRL changes bodyColor into Copper 05
goto fem_copperskin_1
} “Copper 06” {
@PARKER GIRL changes bodyColor into Copper 06
goto fem_copperskin_1
} “Copper 07” {
@PARKER GIRL changes bodyColor into Copper 07
goto fem_copperskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Copper 08” {
@PARKER GIRL changes bodyColor into Copper 08
goto fem_copperskin_1
} “Copper 09” {
@PARKER GIRL changes bodyColor into Copper 09
goto fem_copperskin_1
} “Copper 10” {
@PARKER GIRL changes bodyColor into Copper 10
goto fem_copperskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}

label fem_ashskin_1

    NARRATOR
Ash skin tones.

choice [shouldPaginate: YES]
“Ash 00” {
@PARKER GIRL changes bodyColor into Ash 00
goto fem_ashskin_1
} “Ash 01” {
@PARKER GIRL changes bodyColor into Ash 01
goto fem_ashskin_1
} “Ash 02” {
@PARKER GIRL changes bodyColor into Ash 02
goto fem_ashskin_1
} “Ash 03” {
@PARKER GIRL changes bodyColor into Ash 03
goto fem_ashskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Ash 04” {
@PARKER GIRL changes bodyColor into Ash 04
goto fem_ashskin_1
} “Ash 05” {
@PARKER GIRL changes bodyColor into Ash 05
goto fem_ashskin_1
} “Ash 06” {
@PARKER GIRL changes bodyColor into Ash 06
goto fem_ashskin_1
} “Ash 07” {
@PARKER GIRL changes bodyColor into Ash 07
goto fem_ashskin_1
} “Different Shades” {
goto fem_skin_1
} “Done” {
goto female_custom_1
}
“Ash 08” {
@PARKER GIRL changes bodyColor into Ash 08
goto fem_ashskin_1
} “Ash 09” {
@PARKER GIRL changes bodyColor into Ash 09
goto fem_ashskin_1
} “Ash 10” {
@PARKER GIRL changes bodyColor into Ash 10
goto fem_ashskin_1
} “Done” {
goto female_custom_1
} “Different Shades” {
goto fem_skin_1
}

####################### EYEBROWS #######################

label fem_brows_1

    NARRATOR
Eyebrow shapes.

choice [shouldPaginate: YES]
“Arched Natural”{
@PARKER GIRL changes eyebrows into Arched Natural
goto fem_brows_1
}“Arched Thick”{
@PARKER GIRL changes eyebrows into Arched Thick Styled
goto fem_brows_1
}“Arched Thin”{
@PARKER GIRL changes eyebrows into Arched Thin
goto fem_brows_1
}“Arched Thin High”{
@PARKER GIRL changes eyebrows into Arched Thin High
goto fem_brows_1
} “Change Color” {
goto fem_browscolor_1
} “Done”{
goto female_custom_1
}
“Round Medium”{
@PARKER GIRL changes eyebrows into Round Medium
goto fem_brows_1
}“Round Thick”{
@PARKER GIRL changes eyebrows into Round Thick
goto fem_brows_1
}“Round Thin High”{
@PARKER GIRL changes eyebrows into Round Thin High
goto fem_brows_1
}“Straight Medium”{
@PARKER GIRL changes eyebrows into Straight Medium
goto fem_brows_1
} “Change Color” {
goto fem_browscolor_1
} “Done”{
goto female_custom_1
}
“Arched Natural Scar”{
@PARKER GIRL changes eyebrows into Arched Natural Scar
goto fem_brows_1
}“High Arch Angled”{
@PARKER GIRL changes eyebrows into High Arch Angled
goto fem_brows_1
}“Arched Short”{
@PARKER GIRL changes eyebrows into Arched Short
goto fem_brows_1
}“Bushy Thick”{
@PARKER GIRL changes eyebrows into Bushy Thick
goto fem_brows_1
} “Change Color” {
goto fem_browscolor_1
} “Done”{
goto female_custom_1
}

####################### EYEBROW COLOR #######################

label fem_browscolor_1

    NARRATOR
Eyebrow colors.

choice [shouldPaginate: YES]
“Dirty Blonde” {
@PARKER GIRL changes eyebrowsColor into Dirty Blonde
goto fem_browscolor_1
} “Honey Blonde” {
@PARKER GIRL changes eyebrowsColor into Honey Blonde
goto fem_browscolor_1
} “Platinum Blonde” {
@PARKER GIRL changes eyebrowsColor into Platinum Blonde
goto fem_browscolor_1
} “Strawberry Blonde” {
@PARKER GIRL changes eyebrowsColor into Strawberry Blonde
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
“Blonde Medium” {
@PARKER GIRL changes eyebrowsColor into Blonde Medium
goto fem_browscolor_1
} “Chestnut Brown” {
@PARKER GIRL changes eyebrowsColor into Chestnut Brown
goto fem_browscolor_1
} “Dark Brown” {
@PARKER GIRL changes eyebrowsColor into Dark Brown
goto fem_browscolor_1
} “Deep Brown” {
@PARKER GIRL changes eyebrowsColor into Deep Brown
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
“Light Brown” {
@PARKER GIRL changes eyebrowsColor into Light Brown
goto fem_browscolor_1
} “Dark Black” {
@PARKER GIRL changes eyebrowsColor into Black Dark
goto fem_browscolor_1
} “Jet Black” {
@PARKER GIRL changes eyebrowsColor into blackJet
goto fem_browscolor_1
} “Light Pink” {
@PARKER GIRL changes eyebrowsColor into Pink Lt
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
“Lavender” {
@PARKER GIRL changes eyebrowsColor into Purple Lilac
goto fem_browscolor_1
} “Mint” {
@PARKER GIRL changes eyebrowsColor into Green Mint
goto fem_browscolor_1
} “Ginger Red” {
@PARKER GIRL changes eyebrowsColor into Ginger Red
goto fem_browscolor_1
} “Copper Red” {
@PARKER GIRL changes eyebrowsColor into Copper Red
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}
“Gray” {
@PARKER GIRL changes eyebrowsColor into Gray
goto fem_browscolor_1
} “White” {
@PARKER GIRL changes eyebrowsColor into White
goto fem_browscolor_1
} “Brow Shapes” {
goto fem_brows_1
} “Done” {
goto female_custom_1
}

####################### FACE SHAPE #######################

label fem_face_1

    NARRATOR
Face shapes.

choice [shouldPaginate: YES]
“Diamond” {
@PARKER GIRL changes face into Diamond
goto fem_face_1
} “Long Diamond” {
@PARKER GIRL changes face into Diamond Long
goto fem_face_1
} “Defined Diamond” {
@PARKER GIRL changes face into Diamond Defined Contour
goto fem_face_1
} “Defined Heart” {
@PARKER GIRL changes face into Heart Defined
goto fem_face_1
} “Defined Squared” {
@PARKER GIRL changes face into Square Defined
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Soft Heart” {
@PARKER GIRL changes face into Heart Soft
goto fem_face_1
} “Defined Triangle” {
@PARKER GIRL changes face into Triangle Defined
goto fem_face_1
} “Mature Square” {
@PARKER GIRL changes face into Square Mature
goto fem_face_1
} “Mature Heart” {
@PARKER GIRL changes face into Heart Mature
goto fem_face_1
} “Soft Round” {
@PARKER GIRL changes face into Round Soft
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Square Soft” {
@PARKER GIRL changes face into Square Soft
goto fem_face_1
} “Round Puffy” {
@PARKER GIRL changes face into Round Puffy Cheek
goto fem_face_1
} “Heart Double Chin” {
@PARKER GIRL changes face into Heart Mature Double Chin
goto fem_face_1
} “Round Double Chin” {
@PARKER GIRL changes face into Round Double Chin
goto fem_face_1
} “Long Double Chin” {
@PARKER GIRL changes face into Long Double Chin
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Square Youth” {
@PARKER GIRL changes face into Square Youthful
goto fem_face_1
} “Square Aged” {
@PARKER GIRL changes face into Square Aged
goto fem_face_1
} “Square Chiseled” {
@PARKER GIRL changes face into Square Chiseled
goto fem_face_1
} “Done”{
goto female_custom_1
}
“Triangle Chiseled” {
@PARKER GIRL changes face into Triangle Chiseled
goto fem_face_1
}

####################### EYE SHAPE #######################

label fem_eyes_1

    NARRATOR
Eye shapes.

choice [shouldPaginate: YES]
“Round Wide” {
@PARKER GIRL changes eyes into Round Downturned Wide
goto fem_eyes_1
} “Round Medium” {
@PARKER GIRL changes eyes into Round Medium
goto fem_eyes_1
} “Sharp Almond” {
@PARKER GIRL changes eyes into Sharp Almond
goto fem_eyes_1
} “Generic” {
@PARKER GIRL changes eyes into Female Generic
goto fem_eyes_1
} “Change Color”{
goto fem_eyecolor_1
} “Done”{
goto female_custom_1
}
“Deepset Downturned” {
@PARKER GIRL changes eyes into Deepset Downturned
goto fem_eyes_1
} “Deepset Wide” {
@PARKER GIRL changes eyes into Deepset Upturned Wide
goto fem_eyes_1
} “Deepset Almond” {
@PARKER GIRL changes eyes into Deepset Almond
goto fem_eyes_1
} “Monolid Defined” {
@PARKER GIRL changes eyes into Monolid Defined
goto fem_eyes_1
} “Change Color”{
goto fem_eyecolor_1
} “Done”{
goto female_custom_1
}
“Monolid Slender” {
@PARKER GIRL changes eyes into Monolid Slender
goto fem_eyes_1
} “Angular Slender” {
@PARKER GIRL changes eyes into Angular Slender
goto fem_eyes_1
} “Almond Slender” {
@PARKER GIRL changes eyes into Hooded Slender Almond
goto fem_eyes_1
} “Almond Slender Eyeliner” {
@PARKER GIRL changes eyes into Hooded Slender Almond Eyeliner
goto fem_eyes_1
} “Change Color”{
goto fem_eyecolor_1
} “Done”{
goto female_custom_1
}
“Deepset Mature” {
@PARKER GIRL changes eyes into Deepset Mature
goto fem_eyes_1
} “Deepset Smokey Eye” {
@PARKER GIRL changes eyes into Deep Set False Lashes Smokey Eye
goto fem_eyes_1
}“Heavy Lid Upturned” {
@PARKER GIRL changes eyes into Heavy Lid Upturned
goto fem_eyes_1
} “Delicate Almond” {
@PARKER GIRL changes eyes into Delicate Almond
goto fem_eyes_1
} “Change Color”{
goto fem_eyecolor_1
} “Done”{
goto female_custom_1
}
“Deepset Downturned Wide” {
@PARKER GIRL changes eyes into Deepset Downturned Wide
goto fem_eyes_1
} “Done”{
goto female_custom_1
} “Change Color”{
goto fem_eyecolor_1
}

####################### EYE COLOR #######################

label fem_eyecolor_1

    NARRATOR
Eye colors.

choice [shouldPaginate: YES]
“Black” {
@PARKER GIRL changes eyesColor into Brown Black
goto fem_eyecolor_1
} “Dark Brown” {
@PARKER GIRL changes eyesColor into Brown Dark
goto fem_eyecolor_1
} “Light Brown” {
@PARKER GIRL changes eyesColor into Brown Light
goto fem_eyecolor_1
} “Pale Brown” {
@PARKER GIRL changes eyesColor into Brown Pale
goto fem_eyecolor_1
} “Eye Shapes” {
goto fem_eyes_1
} “Done”{
goto female_custom_1
}
“Ice Blue” {
@PARKER GIRL changes eyesColor into Ice Blue
goto fem_eyecolor_1
} “Aqua Blue” {
@PARKER GIRL changes eyesColor into Blue Aqua
goto fem_eyecolor_1
} “Deep Blue” {
@PARKER GIRL changes eyesColor into Blue Deep
goto fem_eyecolor_1
} “Blue Green” {
@PARKER GIRL changes eyesColor into Blue Green
goto fem_eyecolor_1
} “Eye Shapes” {
goto fem_eyes_1
} “Done”{
goto female_custom_1
}
“Silver” {
@PARKER GIRL changes eyesColor into Grey Cool
goto fem_eyecolor_1
} “Green” {
@PARKER GIRL changes eyesColor into Green Emerald
goto fem_eyecolor_1
} “Hazel” {
@PARKER GIRL changes eyesColor into Hazel
goto fem_eyecolor_1
} “Dark Hazel” {
@PARKER GIRL changes eyesColor into Hazel Dark
goto fem_eyecolor_1
} “Eye Shapes” {
goto fem_eyes_1
} “Done”{
goto female_custom_1
}
“Red” {
@PARKER GIRL changes eyesColor into Red
goto fem_eyecolor_1
} “Violet” {
@PARKER GIRL changes eyesColor into Violet
goto fem_eyecolor_1
} “Eye Shapes” {
goto fem_eyes_1
} “Done”{
goto female_custom_1
}

####################### MOUTH SHAPE #######################

label fem_mouth_1

    NARRATOR
Lip shapes.

choice [shouldPaginate: YES]
“Full Heart” {
@PARKER GIRL changes mouth into Full Heart Pouty
goto fem_mouth_1
}“Full Round” {
@PARKER GIRL changes mouth into Full Round Pouty
goto fem_mouth_1
}“Medium Heart” {
@PARKER GIRL changes mouth into Medium Heart Natural
goto fem_mouth_1
}“Medium Thin” {
@PARKER GIRL changes mouth into Medium Thin
goto fem_mouth_1
}“Change Color”{
goto fem_mouthcolor_1
} “Done”{
goto female_custom_1
}
“Thin Heart” {
@PARKER GIRL changes mouth into Thin Heart
goto fem_mouth_1
}“Small Heart” {
@PARKER GIRL changes mouth into Small Heart
goto fem_mouth_1
}“Flat Round” {
@PARKER GIRL changes mouth into Full Round Flat Top Skin
goto fem_mouth_1
}“Medium Downturned” {
@PARKER GIRL changes mouth into Medium Downturned Pout
goto fem_mouth_1
}“Change Color”{
goto fem_mouthcolor_1
} “Done”{
goto female_custom_1
}
“Full Flat Top” {
@PARKER GIRL changes mouth into Full Flat Top Pouty
goto fem_mouth_1
}“Full Wide” {
@PARKER GIRL changes mouth into Full Wide
goto fem_mouth_1
}“Heart Shaped” {
@PARKER GIRL changes mouth into Heart Shaped Pout
goto fem_mouth_1
}“Heart with Braces” {
@PARKER GIRL changes mouth into Heart Shaped Pout Braces
goto fem_mouth_1
}“Change Color”{
goto fem_mouthcolor_1
} “Done”{
goto female_custom_1
}

####################### MOUTH COLOR #######################

label fem_mouthcolor_1

    NARRATOR
All lip colors.

choice
“Natural” {
goto fem_NaturalColors_1
} “Gloss” {
goto fem_GlossColors_1
} “Matte” {
goto fem_MatteColors_1
} “Done” {
goto female_custom_1
} “Lip Shapes” {
goto fem_mouth_1
}

label fem_NaturalColors_1

    NARRATOR
Natural lip colors.

choice [shouldPaginate: YES]
“Fair Rose” {
@PARKER GIRL changes mouthColor into Fair Rose Matte
goto fem_NaturalColors_1
} “Fair Neutral” {
@PARKER GIRL changes mouthColor into Fair Neutral Matte
goto fem_NaturalColors_1
} “Fair Gold” {
@PARKER GIRL changes mouthColor into Fair Gold Matte
goto fem_NaturalColors_1
} “Beige Light Gold” {
@PARKER GIRL changes mouthColor into Beige Light Gold Matte
goto fem_NaturalColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Beige Gold” {
@PARKER GIRL changes mouthColor into Beige Gold Matte
goto fem_NaturalColors_1
} “Beige Rose” {
@PARKER GIRL changes mouthColor into Beige Rose
goto fem_NaturalColors_1
} “Beige Deep Neutral” {
@PARKER GIRL changes mouthColor into Beige Deep Neutral
goto fem_NaturalColors_1
} “Tan Deep Gold” {
@PARKER GIRL changes mouthColor into Tan Deep Gold
goto fem_NaturalColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Tan Deep Neutral” {
@PARKER GIRL changes mouthColor into Tan Deep Neutral
goto fem_NaturalColors_1
} “Brown Neutral” {
@PARKER GIRL changes mouthColor into Brown Neutral
goto fem_NaturalColors_1
} “Brown Gold” {
@PARKER GIRL changes mouthColor into Brown Gold
goto fem_NaturalColors_1
} “Brown Deep Gold” {
@PARKER GIRL changes mouthColor into Brown Deep Gold
goto fem_NaturalColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Brown Deep Rose” {
@PARKER GIRL changes mouthColor into Brown Deep Rose
goto fem_NaturalColors_1
} “Done” {
goto female_custom_1
} “Try Other Colors” {
goto fem_mouthcolor_1
}

label fem_GlossColors_1

    NARRATOR
Gloss lipstick colors.

choice [shouldPaginate: YES]
“Peach” {
@PARKER GIRL changes mouthColor into Peach Gloss
goto fem_GlossColors_1
} “Light Peach” {
@PARKER GIRL changes mouthColor into Pink Peach Lt Gloss
goto fem_GlossColors_1
} “Beige Pink” {
@PARKER GIRL changes mouthColor into Pink Beige Gloss
goto fem_GlossColors_1
} “Medium Pink” {
@PARKER GIRL changes mouthColor into Pink Medium Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Warm Pink” {
@PARKER GIRL changes mouthColor into Pink Warm Gloss
goto fem_GlossColors_1
} “Hot Pink” {
@PARKER GIRL changes mouthColor into Pink Hot Gloss
goto fem_GlossColors_1
} “Deep Pink” {
@PARKER GIRL changes mouthColor into Pink Deep Gloss
goto fem_GlossColors_1
} “Pink Peach” {
@PARKER GIRL changes mouthColor into Pink Peach Medium Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Neutral Nude” {
@PARKER GIRL changes mouthColor into Neutral Medium Nude Gloss
goto fem_GlossColors_1
} “Light Nude” {
@PARKER GIRL changes mouthColor into Rose Light Nude Gloss
goto fem_GlossColors_1
} “Medium Nude” {
@PARKER GIRL changes mouthColor into Rose Medium Nude Gloss
goto fem_GlossColors_1
} “Dark Nude” {
@PARKER GIRL changes mouthColor into Rose Dark Nude Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Rose” {
@PARKER GIRL changes mouthColor into Rose Gloss
goto fem_GlossColors_1
} “Mauve” {
@PARKER GIRL changes mouthColor into Mauve Gloss
goto fem_GlossColors_1
} “Pastel Purple” {
@PARKER GIRL changes mouthColor into Purple Pastel Gloss
goto fem_GlossColors_1
} “Deep Purple” {
@PARKER GIRL changes mouthColor into Purple Deep Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Red” {
@PARKER GIRL changes mouthColor into Red Gloss
goto fem_GlossColors_1
} “Deep Red” {
@PARKER GIRL changes mouthColor into Red Deep Gloss
goto fem_GlossColors_1
} “Plum” {
@PARKER GIRL changes mouthColor into Plum Gloss
goto fem_GlossColors_1
} “Violet” {
@PARKER GIRL changes mouthColor into Violet Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Blood Orange” {
@PARKER GIRL changes mouthColor into Blood Orange Gloss
goto fem_GlossColors_1
} “Red Garnet” {
@PARKER GIRL changes mouthColor into Red Garnet Gloss
goto fem_GlossColors_1
} “Blackberry” {
@PARKER GIRL changes mouthColor into Blackberry Gloss
goto fem_GlossColors_1
} “Pink Cashmere” {
@PARKER GIRL changes mouthColor into Pink Cashmere Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Ash Deep” {
@PARKER GIRL changes mouthColor into Ash Deep Gloss
goto fem_GlossColors_1
} “Dark Mauve” {
@PARKER GIRL changes mouthColor into Dark Mauve Gloss
goto fem_GlossColors_1
} “Dark Amethyst” {
@PARKER GIRL changes mouthColor into Dark Amethyst Gloss
goto fem_GlossColors_1
} “Royal Blue” {
@PARKER GIRL changes mouthColor into Royal Blue Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Dark Apricot” {
@PARKER GIRL changes mouthColor into Dark Apricot Gloss
goto fem_GlossColors_1
} “Copper Deep” {
@PARKER GIRL changes mouthColor into Copper Deep Gloss
goto fem_GlossColors_1
} “Gold Deep” {
@PARKER GIRL changes mouthColor into Gold Deep Gloss
goto fem_GlossColors_1
} “Black” {
@PARKER GIRL changes mouthColor into Black Gloss
goto fem_GlossColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}

label fem_MatteColors_1

    NARRATOR
Matte lipstick colors.

choice [shouldPaginate: YES]
“Peach” {
@PARKER GIRL changes mouthColor into Peach Matte
goto fem_MatteColors_1
} “Light Peach” {
@PARKER GIRL changes mouthColor into Pink Peach Light Matte
goto fem_MatteColors_1
} “Beige Pink” {
@PARKER GIRL changes mouthColor into Pink Beige Matte
goto fem_MatteColors_1
} “Medium Pink” {
@PARKER GIRL changes mouthColor into Pink Medium Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Warm Pink” {
@PARKER GIRL changes mouthColor into Pink Warm Matte
goto fem_MatteColors_1
} “Hot Pink” {
@PARKER GIRL changes mouthColor into Pink Hot Matte
goto fem_MatteColors_1
} “Deep Pink” {
@PARKER GIRL changes mouthColor into Pink Deep Matte
goto fem_MatteColors_1
} “Pink Peach” {
@PARKER GIRL changes mouthColor into Pink Peach Medium Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Neutral Nude” {
@PARKER GIRL changes mouthColor into Neutral Medium Nude Matte
goto fem_MatteColors_1
} “Light Nude” {
@PARKER GIRL changes mouthColor into Rose Light Nude Matte
goto fem_MatteColors_1
} “Medium Nude” {
@PARKER GIRL changes mouthColor into Rose Medium Nude Matte
goto fem_MatteColors_1
} “Dark Nude” {
@PARKER GIRL changes mouthColor into Rose Dark Nude Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Rose” {
@PARKER GIRL changes mouthColor into Rose Matte
goto fem_MatteColors_1
} “Mauve” {
@PARKER GIRL changes mouthColor into Mauve Matte
goto fem_MatteColors_1
} “Pastel Purple” {
@PARKER GIRL changes mouthColor into Purple Pastel Matte
goto fem_MatteColors_1
} “Deep Purple” {
@PARKER GIRL changes mouthColor into Purple Deep Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Red” {
@PARKER GIRL changes mouthColor into Red Matte
goto fem_MatteColors_1
} “Deep Red” {
@PARKER GIRL changes mouthColor into Red Deep Matte
goto fem_MatteColors_1
} “Plum” {
@PARKER GIRL changes mouthColor into Plum Matte
goto fem_MatteColors_1
} “Violet” {
@PARKER GIRL changes mouthColor into Violet Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Blood Orange” {
@PARKER GIRL changes mouthColor into Blood Orange Matte
goto fem_MatteColors_1
} “Red Garnet” {
@PARKER GIRL changes mouthColor into Red Garnet Matte
goto fem_MatteColors_1
} “Blackberry” {
@PARKER GIRL changes mouthColor into Blackberry Matte
goto fem_MatteColors_1
} “Pink Cashmere” {
@PARKER GIRL changes mouthColor into Pink Cashmere Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Ash Deep” {
@PARKER GIRL changes mouthColor into Ash Deep Matte
goto fem_MatteColors_1
} “Dark Mauve” {
@PARKER GIRL changes mouthColor into Dark Mauve Matte
goto fem_MatteColors_1
} “Dark Amethyst” {
@PARKER GIRL changes mouthColor into Dark Amethyst Matte
goto fem_MatteColors_1
} “Royal Blue” {
@PARKER GIRL changes mouthColor into Royal Blue Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}
“Dark Apricot” {
@PARKER GIRL changes mouthColor into Dark Apricot Matte
goto fem_MatteColors_1
} “Copper Deep” {
@PARKER GIRL changes mouthColor into Copper Deep Matte
goto fem_MatteColors_1
} “Gold Deep” {
@PARKER GIRL changes mouthColor into Gold Deep Matte
goto fem_MatteColors_1
} “Black” {
@PARKER GIRL changes mouthColor into Black Matte
goto fem_MatteColors_1
} “Try Other Colors” {
goto fem_mouthcolor_1
} “Done” {
goto female_custom_1
}

####################### NOSE SHAPE #######################

label fem_nose_1

    NARRATOR
Nose shapes.

choice [shouldPaginate: YES]
“Defined Natural” {
@PARKER GIRL changes nose into Defined Natural
goto fem_nose_1
} “Grecian Soft” {
@PARKER GIRL changes nose into Grecian Soft
goto fem_nose_1
} “Round Broad” {
@PARKER GIRL changes nose into Round Broad
goto fem_nose_1
} “Round Button” {
@PARKER GIRL changes nose into Round Button
goto fem_nose_1
} “Round Button Upturned” {
@PARKER GIRL changes nose into Round Button Upturned
goto fem_nose_1
} “Done”{
goto female_custom_1
}
“Round Downturned” {
@PARKER GIRL changes nose into Round Downturned
goto fem_nose_1
} “Round Flared Upturned” {
@PARKER GIRL changes nose into Round Flared Upturned
goto fem_nose_1
} “Round Flared Downturned” {
@PARKER GIRL changes nose into Round Flared Downturned
goto fem_nose_1
} “Pointed Downturned” {
@PARKER GIRL changes nose into Pointed Downturned
goto fem_nose_1
} “Broad Wide” {
@PARKER GIRL changes nose into Broad Wide
goto fem_nose_1
} “Done”{
goto female_custom_1
}
“Round Flared Downturned Broad” {
@PARKER GIRL changes nose into Round Flared Downturned Broad
goto fem_nose_1
} “Round Button Wide” {
@PARKER GIRL changes nose into Round Button Wide
goto fem_nose_1
} “Round Broad Downturned” {
@PARKER GIRL changes nose into Round Broad Downturned
goto fem_nose_1
} “Done”{
goto female_custom_1
}

####################### HAIR STYLE #######################

label fem_hair_1

    NARRATOR
All hairstyles.

choice
“Short Hair”{
goto fem_hairShort_1
}“Mid-length Hair”{
goto fem_hairMedium_1
}“Long Hair”{
goto fem_hairLong_1
}“Styled Hair”{
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}

label fem_hairShort_1

    NARRATOR
Short hairstyles.

choice [shouldPaginate: YES]
“Afro” {
@PARKER GIRL changes hair into Afro
goto fem_hairShort_1
} “Short Afro” {
@PARKER GIRL changes hair into Short Afro
goto fem_hairShort_1
} “Classic Bob” {
@PARKER GIRL changes hair into Classic Bob
goto fem_hairShort_1
} “Curly Bob” {
@PARKER GIRL changes hair into Curly Bob
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Faux Hawk” {
@PARKER GIRL changes hair into Long Faux Hawk Solid
goto fem_hairShort_1
}“Fade” {
@PARKER GIRL changes hair into Short Curly Fade
goto fem_hairShort_1
}“Pixie” {
@PARKER GIRL changes hair into Short Pixie
goto fem_hairShort_1
}“Punk Pixie” {
@PARKER GIRL changes hair into Punk Pixie
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Short Wavy” {
@PARKER GIRL changes hair into Short Wavy Hair Solid
goto fem_hairShort_1
}“Blunt Bangs” {
@PARKER GIRL changes hair into Blunt Bangs Short
goto fem_hairShort_1
} “Wavy Side Shaved” {
@PARKER GIRL changes hair into Short Wavy Side Shave
goto fem_hairShort_1
}“Curly Blow Out” {
@PARKER GIRL changes hair into Short Curly Blow Out
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Crew Cut” {
@PARKER GIRL changes hair into Crew Cut
goto fem_hairShort_1
}“Short Fringe” {
@PARKER GIRL changes hair into Short Layered Fringe
goto fem_hairShort_1
}“Straight Tucked” {
@PARKER GIRL changes hair into Short Straight Tucked
goto fem_hairShort_1
}“Emo Pixie” {
@PARKER GIRL changes hair into Emo Pixie
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Bantu Knots” {
@PARKER GIRL changes hair into Bantu Knots
goto fem_hairShort_1
}“Conservative Cut” {
@PARKER GIRL changes hair into Conservative Cut
goto fem_hairShort_1
}“Parted Bangs” {
@PARKER GIRL changes hair into Long Bang Short Hair
goto fem_hairShort_1
}“Side Part Curly” {
@PARKER GIRL changes hair into Side Part Curly Asymmetrical
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Short Flipped” {
@PARKER GIRL changes hair into Short Flipped Wavy Solid
goto fem_hairShort_1
}“Type 4 Afro” {
@PARKER GIRL changes hair into Type 4 Afro
goto fem_hairShort_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}

label fem_hairMedium_1

    NARRATOR
Medium hairstyles.

choice [shouldPaginate: YES]
“Braided” {
@PARKER GIRL changes hair into Medium Braided
goto fem_hairMedium_1
}“Medium Dreadlocks” {
@PARKER GIRL changes hair into Medium Dreadlocks
goto fem_hairMedium_1
}“Hair Flip” {
@PARKER GIRL changes hair into Hair Flip
goto fem_hairMedium_1
}“Straight” {
@PARKER GIRL changes hair into Straight Medium
goto fem_hairMedium_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Lob Bangs” {
@PARKER GIRL changes hair into Lob Bangs Blunt
goto fem_hairMedium_1
}“Overgrown Bangs” {
@PARKER GIRL changes hair into Medium Straight Overgrown Bangs
goto fem_hairMedium_1
}“Wavy Ombre” {
@PARKER GIRL changes hair into Short Wavy Ombre
goto fem_hairMedium_1
}“Medium Curly” {
@PARKER GIRL changes hair into Medium Curly Solid
goto fem_hairMedium_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Voluminous Curls” {
@PARKER GIRL changes hair into Voluminous Curls
goto fem_hairMedium_1
} “Parted Wavy” {
@PARKER GIRL changes hair into Short Wavy Asymmetrical
goto fem_hairMedium_1
} “Wavy Side Curls” {
@PARKER GIRL changes hair into Wavy Side Curls
goto fem_hairMedium_1
} “Layered Wavy Bob” {
@PARKER GIRL changes hair into Layered Wavy Bob
goto fem_hairMedium_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Straight Down” {
@PARKER GIRL changes hair into Medium Straight Down
goto fem_hairMedium_1
} “Shoulder Curly” {
@PARKER GIRL changes hair into Medium Shoulder Curly
goto fem_hairMedium_1
} “Natural Afro” {
@PARKER GIRL changes hair into Natural Afro
goto fem_hairMedium_1
} “3A Shoulder Curls” {
@PARKER GIRL changes hair into 3A Shoulder Length Curls Hair
goto fem_hairMedium_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}

label fem_hairLong_1

    NARRATOR
Long hairstyles.

choice [shouldPaginate: YES]
“Beach Wave” {
@PARKER GIRL changes hair into Beach Wave Hair
goto fem_hairLong_1
}“Long Braided” {
@PARKER GIRL changes hair into Long Braided
goto fem_hairLong_1
}“Long Dreadlocks” {
@PARKER GIRL changes hair into Long Dreadlocks
goto fem_hairLong_1
}“Feathered” {
@PARKER GIRL changes hair into Long Feathered
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Long Blunt Bangs” {
@PARKER GIRL changes hair into Long Straight Loose Bangs Blunt Solid
goto fem_hairLong_1
}“Sideswept Bangs” {
@PARKER GIRL changes hair into Long Straight Loose Bangs Sideswept Solid
goto fem_hairLong_1
}“Straight” {
@PARKER GIRL changes hair into Long Straight Loose Solid
goto fem_hairLong_1
}“Wavy Long” {
@PARKER GIRL changes hair into Wavy Long
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Wavy Parted” {
@PARKER GIRL changes hair into Long Wavy Parted Hair
goto fem_hairLong_1
}“Feathered Bangs” {
@PARKER GIRL changes hair into Long Feathered Bangs Blunt
goto fem_hairLong_1
}“Braided Dreads Parted” {
@PARKER GIRL changes hair into Dreads Braided
goto fem_hairLong_1
}“Long Voluminous Curls” {
@PARKER GIRL changes hair into Long Voluminous Curls Loose
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Long Curls” {
@PARKER GIRL changes hair into Long Curls
goto fem_hairLong_1
}“Wavy Princess Braid” {
@PARKER GIRL changes hair into Long Down Wavy Princess Braid
goto fem_hairLong_1
}“Bouffant Wavy” {
@PARKER GIRL changes hair into Bouffant Long Wavy
goto fem_hairLong_1
}“Loose Curls” {
@PARKER GIRL changes hair into Long Loose Curls
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Wavy Blowout” {
@PARKER GIRL changes hair into Long Wavy Blowout
goto fem_hairLong_1
}“Side Shave” {
@PARKER GIRL changes hair into Long Side Shave
goto fem_hairLong_1
}“Scene Hair” {
@PARKER GIRL changes hair into Scene Swoosh
goto fem_hairLong_1
}“Slicked Back” {
@PARKER GIRL changes hair into Long Straight Slicked Back
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Thick Curls” {
@PARKER GIRL changes hair into Long Thick Curls
goto fem_hairLong_1
}“Loose Bangs Sideswept” {
@PARKER GIRL changes hair into Long Wavy Loose Bangs Sideswept
goto fem_hairLong_1
}“Layered Side Part” {
@PARKER GIRL changes hair into Long Layered Side Part
goto fem_hairLong_1
}“Widows Peak” {
@PARKER GIRL changes hair into Long Tapered Widows Peak
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Long Straight Wavy Parted Ends” {
@PARKER GIRL changes hair into Long Straight Wavy Ends Parted
goto fem_hairLong_1
}“Locks” {
@PARKER GIRL changes hair into Shoulder Length Locks Hair
goto fem_hairLong_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}

label fem_hairUp_1

    NARRATOR
Up-do hairstyles.

choice [shouldPaginate: YES]
“Braided Bun” {
@PARKER GIRL changes hair into Braided Bun
goto fem_hairUp_1
}“Short Ponytail” {
@PARKER GIRL changes hair into Short High Ponytail
goto fem_hairUp_1
}“Long Ponytail” {
@PARKER GIRL changes hair into Long High Ponytail
goto fem_hairUp_1
}“Morning Updo” {
@PARKER GIRL changes hair into Morning Updo
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Small Bun” {
@PARKER GIRL changes hair into Small Bun
goto fem_hairUp_1
}“Double Dutch Braids” {
@PARKER GIRL changes hair into Long Double Dutch Braids
goto fem_hairUp_1
}“Pinup Rolls” {
@PARKER GIRL changes hair into Pinup Victory Rolls
goto fem_hairUp_1
}“Sleek Ponytail” {
@PARKER GIRL changes hair into Sleek Ponytail
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Shoulder Braid” {
@PARKER GIRL changes hair into Over Shoulder Braid
goto fem_hairUp_1
}“Full Pigtail” {
@PARKER GIRL changes hair into Full Pigtail
goto fem_hairUp_1
}“Updo Braids” {
@PARKER GIRL changes hair into Braids Updo
goto fem_hairUp_1
}“Double Buns” {
@PARKER GIRL changes hair into Double Buns
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Double Afro Puffs” {
@PARKER GIRL changes hair into Curly Double Afro Puffs
goto fem_hairUp_1
}“Curly Bun Half-up” {
@PARKER GIRL changes hair into Medium Shoulder Curly Bun Hair
goto fem_hairUp_1
}“Messy Sock Bun” {
@PARKER GIRL changes hair into Messy Sock Bun
goto fem_hairUp_1
}“Messy Ponytail” {
@PARKER GIRL changes hair into Short Messy Pony Tail
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Blunt Bangs Ponytail” {
@PARKER GIRL changes hair into Pony Tail Blunt Bangs
goto fem_hairUp_1
}“Side Swept Updo” {
@PARKER GIRL changes hair into Side Swept Updo Long
goto fem_hairUp_1
}“Long Wavy Updo” {
@PARKER GIRL changes hair into Updo Pony Wavy Long
goto fem_hairUp_1
}“Punk Hair” {
@PARKER GIRL changes hair into Cropped Punk Cut
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Updo Low Bun” {
@PARKER GIRL changes hair into Updo
goto fem_hairUp_1
}“Updo Curly Messy” {
@PARKER GIRL changes hair into Updo Curly Messy
goto fem_hairUp_1
}“Updo Twist Bangs” {
@PARKER GIRL changes hair into Updo High Twist Bangs Blunt
goto fem_hairUp_1
}“Spiral Pigtail” {
@PARKER GIRL changes hair into High Spiral Pigtail Hair
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Updo Princess Braid” {
@PARKER GIRL changes hair into Long Updo Wavy Princess Braid
goto fem_hairUp_1
}“Natural Curly Updo” {
@PARKER GIRL changes hair into Natural Curly Pulled Updo Hair
goto fem_hairUp_1
}“Updo Curly Long” {
@PARKER GIRL changes hair into Updo Curly Long
goto fem_hairUp_1
}“Long Curl Half Updo” {
@PARKER GIRL changes hair into Long Curl Half Updo
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Braided Afro Bun” {
@PARKER GIRL changes hair into Braided Afro Bun
goto fem_hairUp_1
}“Side Shave Braids” {
@PARKER GIRL changes hair into Curly Braids Hair
goto fem_hairUp_1
}“High Wavy Pony Tail Over Shoulder” {
@PARKER GIRL changes hair into High Wavy Pony Tail Over Shoulder Solid
goto fem_hairUp_1
}“Braided Curly Pony” {
@PARKER GIRL changes hair into Braided Curly Pony
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}
“Half Up Top Knot Ponytail” {
@PARKER GIRL changes hair into Medium Half Up Top Knot Ponytail
goto fem_hairUp_1
}“Long Half Up Ponytail” {
@PARKER GIRL changes hair into Long Half Up Ponytail Hair
goto fem_hairUp_1
}“Side Bang Double Bun” {
@PARKER GIRL changes hair into Medium Side Bang Double Bun
goto fem_hairUp_1
}“Double Bun Half Down” {
@PARKER GIRL changes hair into Double Bun Half Down Hair
goto fem_hairUp_1
}“Change Color”{
goto fem_haircolor_1
}“Back to Styles”{
goto fem_hair_1
}

####################### HAIR COLOR #######################

label fem_haircolor_1

    NARRATOR
All hair colors.

choice
“Dark”{
goto fem_hairDark_1
}“Light” {
goto fem_hairLight_1
}“Dyed”{
goto fem_hairDye_1
}“Done”{
goto female_custom_1
} “Back to Styles” {
goto fem_hair_1
}

label fem_hairDark_1

    NARRATOR
Dark hair colors.

choice [shouldPaginate: YES]
“Light Brown” {
@PARKER GIRL changes hairColor into Light Brown
goto fem_hairDark_1
}“Warm Brown” {
@PARKER GIRL changes hairColor into Medium Warm Brown
goto fem_hairDark_1
}“Medium Brown” {
@PARKER GIRL changes hairColor into Medium Brown
goto fem_hairDark_1
}“Chestnut Brown”{
@PARKER GIRL changes hairColor into Chestnut Brown
goto fem_hairDark_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
“Dark Brown”{
@PARKER GIRL changes hairColor into Dark Brown
goto fem_hairDark_1
}“Brunette Brown”{
@PARKER GIRL changes hairColor into Brunette Brown
goto fem_hairDark_1
}“Ginger Red” {
@PARKER GIRL changes hairColor into Ginger Red
goto fem_hairDark_1
}“Burgundy Red” {
@PARKER GIRL changes hairColor into Burgundy Red
goto fem_hairDark_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
“Deep Brown” {
@PARKER GIRL changes hairColor into Deep Brown
goto fem_hairDark_1
}“Brown Black” {
@PARKER GIRL changes hairColor into Brown Black
goto fem_hairDark_1
}“Dark Black” {
@PARKER GIRL changes hairColor into Black Dark
goto fem_hairDark_1
}“Jet Black” {
@PARKER GIRL changes hairColor into Black Jet
goto fem_hairDark_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}

label fem_hairLight_1

    NARRATOR
Light hair colors.

choice [shouldPaginate: YES]
“Platinum Blonde” {
@PARKER GIRL changes hairColor into Platinum Blonde
goto fem_hairLight_1
}“Dirty Blonde” {
@PARKER GIRL changes hairColor into Dirty Blonde
goto fem_hairLight_1
}“Honey Blonde” {
@PARKER GIRL changes hairColor into Honey Blonde
goto fem_hairLight_1
}“Strawberry Blonde” {
@PARKER GIRL changes hairColor into Strawberry Blonde
goto fem_hairLight_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}
“Medium Blonde” {
@PARKER GIRL changes hairColor into Blonde Medium
goto fem_hairLight_1
}“Ash Blonde” {
@PARKER GIRL changes hairColor into Ash Blonde
goto fem_hairLight_1
}“Peach Blonde” {
@PARKER GIRL changes hairColor into Peach Blonde
goto fem_hairLight_1
}“Platinum White” {
@PARKER GIRL changes hairColor into Platinum White
goto fem_hairLight_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}

label fem_hairDye_1

    NARRATOR
Dyed hair colors.

choice
“Pink/Purple” {
goto fem_hairDye_Pink_1
}“Blue/Green” {
goto fem_hairDye_Blue_1
}“Red/Yellow” {
goto fem_hairDye_Red_1
}“White/Grey” {
goto fem_hairDye_White_1
}“Different Colors”{
goto fem_haircolor_1
}“Done”{
goto female_custom_1
}

label fem_hairDye_Pink_1

    NARRATOR
Pink and purple hair colors.

choice [shouldPaginate: YES]
“Hot Pink” {
@PARKER GIRL changes hairColor into Hot Pink
goto fem_hairDye_Pink_1
} “Light Pink” {
@PARKER GIRL changes hairColor into Pink Lt
goto fem_hairDye_Pink_1
} “Warm Pink” {
@PARKER GIRL changes hairColor into Warm Pink
goto fem_hairDye_Pink_1
} “Rose Gold” {
@PARKER GIRL changes hairColor into Rose Gold
goto fem_hairDye_Pink_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
“Purple” {
@PARKER GIRL changes hairColor into Red Purple
goto fem_hairDye_Pink_1
} “Purple Lilac” {
@PARKER GIRL changes hairColor into Purple Lilac
goto fem_hairDye_Pink_1
} “Plum” {
@PARKER GIRL changes hairColor into Plum
goto fem_hairDye_Pink_1
} “Dark Purple” {
@PARKER GIRL changes hairColor into Purple
goto fem_hairDye_Pink_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
“Pastel Lavender” {
@PARKER GIRL changes hairColor into Pastel Purple Lavender
goto fem_hairDye_Pink_1
}“Done” {
goto female_custom_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}

label fem_hairDye_Blue_1

    NARRATOR
Blue and green hair colors.

choice [shouldPaginate: YES]
“Blue” {
@PARKER GIRL changes hairColor into Blue
goto fem_hairDye_Blue_1
} “Light Blue” {
@PARKER GIRL changes hairColor into Cornflower Blue
goto fem_hairDye_Blue_1
} “Aqua Blue” {
@PARKER GIRL changes hairColor into Aqua Blue
goto fem_hairDye_Blue_1
} “Dark Blue” {
@PARKER GIRL changes hairColor into Blue Black
goto fem_hairDye_Blue_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
“Green” {
@PARKER GIRL changes hairColor into Green
goto fem_hairDye_Blue_1
} “Lime Green” {
@PARKER GIRL changes hairColor into Yellow Green
goto fem_hairDye_Blue_1
} “Mint” {
@PARKER GIRL changes hairColor into Mint
goto fem_hairDye_Blue_1
} “Aqua Green” {
@PARKER GIRL changes hairColor into Aqua Green
goto fem_hairDye_Blue_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}
“Pastel Blue” {
@PARKER GIRL changes hairColor into Pastel Blue
goto fem_hairDye_Blue_1
} “Pastel Mint” {
@PARKER GIRL changes hairColor into Pastel Mint
goto fem_hairDye_Blue_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}

label fem_hairDye_Red_1

    NARRATOR
Red, yellow, & orange hair colors.

choice [shouldPaginate: YES]
“Yellow” {
@PARKER GIRL changes hairColor into Yellow
goto fem_hairDye_Red_1
} “Orange” {
@PARKER GIRL changes hairColor into Orange
goto fem_hairDye_Red_1
} “Red” {
@PARKER GIRL changes hairColor into Red
goto fem_hairDye_Red_1
} “Copper Red” {
@PARKER GIRL changes hairColor into Copper Red
goto fem_hairDye_Red_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}

label fem_hairDye_White_1

    NARRATOR
White & grey hair colors.

choice [shouldPaginate: YES]
“Grey” {
@PARKER GIRL changes hairColor into Cool Gray
goto fem_hairDye_White_1
} “Light Grey” {
@PARKER GIRL changes hairColor into Aqua Gray
goto fem_hairDye_White_1
}“White” {
@PARKER GIRL changes hairColor into Warm White
goto fem_hairDye_White_1
}“Ice” {
@PARKER GIRL changes hairColor into Platinum Ice
goto fem_hairDye_White_1
}“Back to Dyed Colors”{
goto fem_hairDye_1
}“Done” {
goto female_custom_1
}

label female_1_end
NARRATOR
Are you happy with how she looks?
choice
“Yes, she looks gorgeous!” {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Customization Template Credit
@PARKER GIRL is primp_neutral
} “No, I want to change something.” {
goto female_custom_1
}

@PARKER GIRL exits right and PARKER GIRL does it while walk_neutral_loop
#FEMALE CUSTOMIZATION TEMPLATE GOES HERE (OPTIONAL)
#FEMALE LI STORY LINE GOES HERE

goto end_chapter

label male_LI_branch

@pause for 0
label boy_custom_1

@PARKER BOY stands screen center and PARKER BOY faces right and PARKER BOY starts idle

    NARRATOR
What does he look like?

choice
“Skin Tone” {
goto boy_skin_1
} “Hair” {
goto boy_hair_1
} “Eyes” {
goto boy_eyes_1
} “Eyebrows” {
goto boy_brows_1
} “Face Shape”{
goto boy_face_1
} “Nose” {
goto boy_nose_1
} “Mouth” {
goto boy_mouth_1
} “This is perfect!” {
goto boy_end_1
}

####################### SKIN COLOR #######################

label boy_skin_1

    NARRATOR
All skin tones.

choice
“Neutral Shades” {
goto boy_neutralskin_1
} “Rose Shades” {
goto boy_roseskin_1
} “Gold Shades” {
goto boy_goldskin_1
} “Copper Shades” {
goto boy_copperskin_1
} “Ash Shades” {
goto boy_ashskin_1
} “Done” {
goto boy_custom_1
}

label boy_neutralskin_1

    NARRATOR
Neutral skin tones.

choice [shouldPaginate: YES]
“Neutral 00” {
@PARKER BOY changes bodyColor into Neutral 00
goto boy_neutralskin_1
} “Neutral 01” {
@PARKER BOY changes bodyColor into Neutral 01
goto boy_neutralskin_1
} “Neutral 02” {
@PARKER BOY changes bodyColor into Neutral 02
goto boy_neutralskin_1
} “Neutral 03” {
@PARKER BOY changes bodyColor into Neutral 03
goto boy_neutralskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Neutral 04” {
@PARKER BOY changes bodyColor into Neutral 04
goto boy_neutralskin_1
} “Neutral 05” {
@PARKER BOY changes bodyColor into Neutral 05
goto boy_neutralskin_1
} “Neutral 06” {
@PARKER BOY changes bodyColor into Neutral 06
goto boy_neutralskin_1
} “Neutral 07” {
@PARKER BOY changes bodyColor into Neutral 07
goto boy_neutralskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Neutral 08” {
@PARKER BOY changes bodyColor into Neutral 08
goto boy_neutralskin_1
} “Neutral 09” {
@PARKER BOY changes bodyColor into Neutral 09
goto boy_neutralskin_1
} “Neutral 10” {
@PARKER BOY changes bodyColor into Neutral 10
goto boy_neutralskin_1
} “Done” {
goto boy_custom_1
} “Different Shades” {
goto boy_skin_1
}

label boy_roseskin_1

    NARRATOR
Rose skin tones.

choice [shouldPaginate: YES]
“Rose 00” {
@PARKER BOY changes bodyColor into Rose 00
goto boy_roseskin_1
} “Rose 01” {
@PARKER BOY changes bodyColor into Rose 01
goto boy_roseskin_1
} “Rose 02” {
@PARKER BOY changes bodyColor into Rose 02
goto boy_roseskin_1
} “Rose 03” {
@PARKER BOY changes bodyColor into Rose 03
goto boy_roseskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Rose 04” {
@PARKER BOY changes bodyColor into Rose 04
goto boy_roseskin_1
} “Rose 05” {
@PARKER BOY changes bodyColor into Rose 05
goto boy_roseskin_1
} “Rose 06” {
@PARKER BOY changes bodyColor into Rose 06
goto boy_roseskin_1
} “Rose 07” {
@PARKER BOY changes bodyColor into Rose 07
goto boy_roseskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Rose 08” {
@PARKER BOY changes bodyColor into Rose 08
goto boy_roseskin_1
} “Rose 09” {
@PARKER BOY changes bodyColor into Rose 09
goto boy_roseskin_1
} “Rose 10” {
@PARKER BOY changes bodyColor into Rose 10
goto boy_roseskin_1
} “Done” {
goto boy_custom_1
} “Different Shades” {
goto boy_skin_1
}

label boy_goldskin_1

    NARRATOR
Gold skin tones.

choice [shouldPaginate: YES]
“Gold 00” {
@PARKER BOY changes bodyColor into Gold 00
goto boy_goldskin_1
} “Gold 01” {
@PARKER BOY changes bodyColor into Gold 01
goto boy_goldskin_1
} “Gold 02” {
@PARKER BOY changes bodyColor into Gold 02
goto boy_goldskin_1
} “Gold 03” {
@PARKER BOY changes bodyColor into Gold 03
goto boy_goldskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Gold 04” {
@PARKER BOY changes bodyColor into Gold 04
goto boy_goldskin_1
} “Gold 05” {
@PARKER BOY changes bodyColor into Gold 05
goto boy_goldskin_1
} “Gold 06” {
@PARKER BOY changes bodyColor into Gold 06
goto boy_goldskin_1
} “Gold 07” {
@PARKER BOY changes bodyColor into Gold 07
goto boy_goldskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Gold 08” {
@PARKER BOY changes bodyColor into Gold 08
goto boy_goldskin_1
} “Gold 09” {
@PARKER BOY changes bodyColor into Gold 09
goto boy_goldskin_1
} “Gold 10” {
@PARKER BOY changes bodyColor into Gold 10
goto boy_goldskin_1
} “Done” {
goto boy_custom_1
} “Different Shades” {
goto boy_skin_1
}

label boy_copperskin_1

    NARRATOR
Copper skin tones.

choice [shouldPaginate: YES]
“Copper 00” {
@PARKER BOY changes bodyColor into Copper 00
goto boy_copperskin_1
} “Copper 01” {
@PARKER BOY changes bodyColor into Copper 01
goto boy_copperskin_1
} “Copper 02” {
@PARKER BOY changes bodyColor into Copper 02
goto boy_copperskin_1
} “Copper 03” {
@PARKER BOY changes bodyColor into Copper 03
goto boy_copperskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Copper 04” {
@PARKER BOY changes bodyColor into Copper 04
goto boy_copperskin_1
} “Copper 05” {
@PARKER BOY changes bodyColor into Copper 05
goto boy_copperskin_1
} “Copper 06” {
@PARKER BOY changes bodyColor into Copper 06
goto boy_copperskin_1
} “Copper 07” {
@PARKER BOY changes bodyColor into Copper 07
goto boy_copperskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Copper 08” {
@PARKER BOY changes bodyColor into Copper 08
goto boy_copperskin_1
} “Copper 09” {
@PARKER BOY changes bodyColor into Copper 09
goto boy_copperskin_1
} “Copper 10” {
@PARKER BOY changes bodyColor into Copper 10
goto boy_copperskin_1
} “Done” {
goto boy_custom_1
} “Different Shades” {
goto boy_skin_1
}

label boy_ashskin_1

    NARRATOR
Ash skin tones.

choice [shouldPaginate: YES]
“Ash 00” {
@PARKER BOY changes bodyColor into Ash 00
goto boy_ashskin_1
} “Ash 01” {
@PARKER BOY changes bodyColor into Ash 01
goto boy_ashskin_1
} “Ash 02” {
@PARKER BOY changes bodyColor into Ash 02
goto boy_ashskin_1
} “Ash 03” {
@PARKER BOY changes bodyColor into Ash 03
goto boy_ashskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Ash 04” {
@PARKER BOY changes bodyColor into Ash 04
goto boy_ashskin_1
} “Ash 05” {
@PARKER BOY changes bodyColor into Ash 05
goto boy_ashskin_1
} “Ash 06” {
@PARKER BOY changes bodyColor into Ash 06
goto boy_ashskin_1
} “Ash 07” {
@PARKER BOY changes bodyColor into Ash 07
goto boy_ashskin_1
} “Different Shades” {
goto boy_skin_1
} “Done” {
goto boy_custom_1
}
“Ash 08” {
@PARKER BOY changes bodyColor into Ash 08
goto boy_ashskin_1
} “Ash 09” {
@PARKER BOY changes bodyColor into Ash 09
goto boy_ashskin_1
} “Ash 10” {
@PARKER BOY changes bodyColor into Ash 10
goto boy_ashskin_1
} “Done” {
goto boy_custom_1
} “Different Shades” {
goto boy_skin_1
}

####################### EYEBROWs #######################

label boy_brows_1

    NARRATOR
Eyebrow shapes.

choice [shouldPaginate: YES]
“Arched Medium”{
@PARKER BOY changes eyebrows into Arched Medium
goto boy_brows_1
}“Generic”{
@PARKER BOY changes eyebrows into Male Generic
goto boy_brows_1
}“Round Medium”{
@PARKER BOY changes eyebrows into Round Medium
goto boy_brows_1
}“Round Soft”{
@PARKER BOY changes eyebrows into Round Soft
goto boy_brows_1
} “Change Color” {
goto boy_browscolor_1
} “Done”{
goto boy_custom_1
}
“Round Thick”{
@PARKER BOY changes eyebrows into Round Thick
goto boy_brows_1
}“Straight Medium”{
@PARKER BOY changes eyebrows into Straight Medium
goto boy_brows_1
}“Arched Bushy”{
@PARKER BOY changes eyebrows into Arched Bushy
goto boy_brows_1
}“Round Thin”{
@PARKER BOY changes eyebrows into Round Thin
goto boy_brows_1
} “Change Color” {
goto boy_browscolor_1
} “Done”{
goto boy_custom_1
}
“Furrowed Straight”{
@PARKER BOY changes eyebrows into Furrowed Straight S
goto boy_brows_1
}“Furrowed Raised”{
@PARKER BOY changes eyebrows into Furrowed Raised S
goto boy_brows_1
}“Straight Medium Scar”{
@PARKER BOY changes eyebrows into Straight Medium Scar
goto boy_brows_1
} “Done”{
goto boy_custom_1
} “Change Color” {
goto boy_browscolor_1
}

####################### EYEBROW COLOR #######################

label boy_browscolor_1

    NARRATOR
Eyebrow colors.

choice [shouldPaginate: YES]
“Dirty Blonde” {
@PARKER BOY changes eyebrowsColor into Dirty Blonde
goto boy_browscolor_1
} “Honey Blonde” {
@PARKER BOY changes eyebrowsColor into Honey Blonde
goto boy_browscolor_1
} “Platinum Blonde” {
@PARKER BOY changes eyebrowsColor into Platinum Blonde
goto boy_browscolor_1
} “Strawberry Blonde” {
@PARKER BOY changes eyebrowsColor into Strawberry Blonde
goto boy_browscolor_1
} “Change Brow Shape” {
goto boy_brows_1
} “Done” {
goto boy_custom_1
}
“Blonde Medium” {
@PARKER BOY changes eyebrowsColor into Blonde Medium
goto boy_browscolor_1
} “Chestnut Brown” {
@PARKER BOY changes eyebrowsColor into Chestnut Brown
goto boy_browscolor_1
} “Dark Brown” {
@PARKER BOY changes eyebrowsColor into Dark Brown
goto boy_browscolor_1
} “Deep Brown” {
@PARKER BOY changes eyebrowsColor into Deep Brown
goto boy_browscolor_1
} “Change Brow Shape” {
goto boy_brows_1
} “Done” {
goto boy_custom_1
}
“Light Brown” {
@PARKER BOY changes eyebrowsColor into Light Brown
goto boy_browscolor_1
} “Dark Black” {
@PARKER BOY changes eyebrowsColor into Black Dark
goto boy_browscolor_1
} “Jet Black” {
@PARKER BOY changes eyebrowsColor into blackJet
goto boy_browscolor_1
} “Light Pink” {
@PARKER BOY changes eyebrowsColor into Pink Lt
goto boy_browscolor_1
} “Change Brow Shape” {
goto boy_brows_1
} “Done” {
goto boy_custom_1
}
“Lavender” {
@PARKER BOY changes eyebrowsColor into Purple Lilac
goto boy_browscolor_1
} “Mint” {
@PARKER BOY changes eyebrowsColor into Green Mint
goto boy_browscolor_1
} “Ginger Red” {
@PARKER BOY changes eyebrowsColor into Ginger Red
goto boy_browscolor_1
} “Copper Red” {
@PARKER BOY changes eyebrowsColor into Copper Red
goto boy_browscolor_1
} “Change Brow Shape” {
goto boy_brows_1
} “Done” {
goto boy_custom_1
}
“Gray” {
@PARKER BOY changes eyebrowsColor into Gray
goto boy_browscolor_1
} “White” {
@PARKER BOY changes eyebrowsColor into White
goto boy_browscolor_1
} “Change Brow Shape” {
goto boy_brows_1
} “Done” {
goto boy_custom_1
}

####################### FACE SHAPE #######################

label boy_face_1

    NARRATOR
Face shapes.

choice
“Clean Shaven” {
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done” {
goto boy_custom_1
}

label boy_face_clean_1

    NARRATOR
Face shapes.

choice [shouldPaginate: YES]
“Soft Diamond” {
@PARKER BOY changes face into Diamond Soft
goto boy_face_clean_1
} “Defined Diamond” {
@PARKER BOY changes face into Diamond Defined
goto boy_face_clean_1
} “Chiseled” {
@PARKER BOY changes face into Chiseled Angular
goto boy_face_clean_1
} “Generic” {
@PARKER BOY changes face into Male Generic
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done”{
goto boy_custom_1
}
“Round” {
@PARKER BOY changes face into Round Soft
goto boy_face_clean_1
} “Square Jaw” {
@PARKER BOY changes face into Square Jaw
goto boy_face_clean_1
} “Square Defined” {
@PARKER BOY changes face into Square Defined
goto boy_face_clean_1
} “Triangle” {
@PARKER BOY changes face into Triangle Chiseled
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done”{
goto boy_custom_1
}
“Mature Square” {
@PARKER BOY changes face into Square Jaw Mature
goto boy_face_clean_1
} “Broad Cheeks” {
@PARKER BOY changes face into Round Broad Cheeks
goto boy_face_clean_1
} “Triangle Defined Chin” {
@PARKER BOY changes face into Triangle Defined Chin
goto boy_face_clean_1
} “Pointed Ear” {
@PARKER BOY changes face into Triangle Defined Chin Pointed Ear Skin
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done”{
goto boy_custom_1
}
“Square Sculpted” {
@PARKER BOY changes face into Square Sculpted
goto boy_face_clean_1
} “Cleft Chin” {
@PARKER BOY changes face into Square Sculpted Cleft Chin
goto boy_face_clean_1
} “Triangle Sculpted” {
@PARKER BOY changes face into Triangle Sculpted
goto boy_face_clean_1
} “Square Youth” {
@PARKER BOY changes face into Square Youthful
goto boy_face_clean_1
} “Facial Hair” {
goto boy_face_beards_1
} “Done”{
goto boy_custom_1
}
“Square Aged” {
@PARKER BOY changes face into Square Aged
goto boy_face_clean_1
} “Done”{
goto boy_custom_1
} “Facial Hair” {
goto boy_face_beards_1
}

label boy_face_beards_1

    NARRATOR
Face shapes.

choice [shouldPaginate: YES]
“Chiseled Stubble” {
@PARKER BOY changes face into Chiseled Angular Stubble
goto boy_face_beards_1
} “Chiseled Shaved” {
@PARKER BOY changes face into Chiseled Square Stubble Shaved
goto boy_face_beards_1
} “Long Jaw Stubble” {
@PARKER BOY changes face into Square Long Jaw Stubble
goto boy_face_beards_1
} “Long Jaw Shadow” {
@PARKER BOY changes face into Square Long Jaw Shadow
goto boy_face_beards_1
} “Clean Shaved” {
goto boy_face_clean_1
} “Done”{
goto boy_custom_1
}
“Roundcheek Stubble” {
@PARKER BOY changes face into Square Jaw Roundcheek Stubble
goto boy_face_beards_1
} “Scruffy Beard” {
@PARKER BOY changes face into Triangle Chiseled Scruffy Beard
goto boy_face_beards_1
} “Clean Shaved” {
goto boy_face_clean_1
} “Done”{
goto boy_custom_1
}

####################### EYE SHAPE #######################

label boy_eyes_1

    NARRATOR
Eye shapes.

choice [shouldPaginate: YES]
“Deepset Downturned” {
@PARKER BOY changes eyes into Deepset Downturned
goto boy_eyes_1
} “Deepset Heavy” {
@PARKER BOY changes eyes into Deepset Heavy Lid
goto boy_eyes_1
} “Deepset Downturned Lid” {
@PARKER BOY changes eyes into Deepset Downturned Lidded
goto boy_eyes_1
} “Deepset Mature” {
@PARKER BOY changes eyes into Deepset Sloping Mature
goto boy_eyes_1
} “Change Color”{
goto boy_eyecolor_1
} “Done”{
goto boy_custom_1
}
“Generic” {
@PARKER BOY changes eyes into Male Generic
goto boy_eyes_1
} “Slender” {
@PARKER BOY changes eyes into Monolid Slender
goto boy_eyes_1
} “Oval Wide” {
@PARKER BOY changes eyes into Oval Wide
goto boy_eyes_1
} “Sloping Heavy Lid” {
@PARKER BOY changes eyes into Sloping Heavy Lid
goto boy_eyes_1
} “Change Color”{
goto boy_eyecolor_1
} “Done”{
goto boy_custom_1
}
“Deep Sunken” {
@PARKER BOY changes eyes into Male Deep Sunken
goto boy_eyes_1
} “Narrow Almond Smiling” {
@PARKER BOY changes eyes into Narrow Almond Deep Smiling
goto boy_eyes_1
} “Narrow Almond Sunken” {
@PARKER BOY changes eyes into Narrow Almond Deep Sunken
goto boy_eyes_1
} “Hooded Almond” {
@PARKER BOY changes eyes into Hooded Almond
goto boy_eyes_1
} “Change Color”{
goto boy_eyecolor_1
} “Done”{
goto boy_custom_1
}
“Almond Deep” {
@PARKER BOY changes eyes into Wide Almond Deep
goto boy_eyes_1
} “Almond Deep Eyebags” {
@PARKER BOY changes eyes into Wide Almond Deep Eyebags
goto boy_eyes_1
} “Deepset Upturned” {
@PARKER BOY changes eyes into Deepset Upturned
goto boy_eyes_1
} “Deepset Upturned Lashes” {
@PARKER BOY changes eyes into Deepset Upturned Lashes
goto boy_eyes_1
} “Change Color”{
goto boy_eyecolor_1
} “Done”{
goto boy_custom_1
}
“Delicate Almond” {
@PARKER BOY changes eyes into Delicate Almond
goto boy_eyes_1
} “Hooded Almond Narrow” {
@PARKER BOY changes eyes into Hooded Almond Narrow
goto boy_eyes_1
} “Downturned Heavy Lid” {
@PARKER BOY changes eyes into Downturned Heavy Lid
goto boy_eyes_1
} “Done”{
goto boy_custom_1
} “Change Color”{
goto boy_eyecolor_1
}

####################### EYE COLOR #######################

label boy_eyecolor_1

    NARRATOR
Eye colors.

choice [shouldPaginate: YES]
“Black” {
@PARKER BOY changes eyesColor into Brown Black
goto boy_eyecolor_1
} “Dark Brown” {
@PARKER BOY changes eyesColor into Brown Dark
goto boy_eyecolor_1
} “Light Brown” {
@PARKER BOY changes eyesColor into Brown Light
goto boy_eyecolor_1
} “Pale Brown” {
@PARKER BOY changes eyesColor into Brown Pale
goto boy_eyecolor_1
} “Change Eye Shape” {
goto boy_eyes_1
} “Done”{
goto boy_custom_1
}
“Ice Blue” {
@PARKER BOY changes eyesColor into Ice Blue
goto boy_eyecolor_1
} “Aqua Blue” {
@PARKER BOY changes eyesColor into Blue Aqua
goto boy_eyecolor_1
} “Deep Blue” {
@PARKER BOY changes eyesColor into Blue Deep
goto boy_eyecolor_1
} “Blue Green” {
@PARKER BOY changes eyesColor into Blue Green
goto boy_eyecolor_1
} “Change Eye Shape” {
goto boy_eyes_1
} “Done”{
goto boy_custom_1
}
“Silver” {
@PARKER BOY changes eyesColor into Grey Cool
goto boy_eyecolor_1
} “Green” {
@PARKER BOY changes eyesColor into Green Emerald
goto boy_eyecolor_1
} “Hazel” {
@PARKER BOY changes eyesColor into Hazel
goto boy_eyecolor_1
} “Dark Hazel” {
@PARKER BOY changes eyesColor into Hazel Dark
goto boy_eyecolor_1
} “Change Eye Shape” {
goto boy_eyes_1
} “Done”{
goto boy_custom_1
}
“Red” {
@PARKER BOY changes eyesColor into Red
goto boy_eyecolor_1
} “Violet” {
@PARKER BOY changes eyesColor into Violet
goto boy_eyecolor_1
} “Change Eye Shape” {
goto boy_eyes_1
} “Done”{
goto boy_custom_1
}

####################### MOUTH SHAPE #######################

label boy_mouth_1

    NARRATOR
Mouth shapes.

choice [shouldPaginate: YES]
“Medium Straight” {
@PARKER BOY changes mouth into Medium Straight Natural
goto boy_mouth_1
}“Thin Heart” {
@PARKER BOY changes mouth into Thin Heart
goto boy_mouth_1
}“Small Heart” {
@PARKER BOY changes mouth into Small Heart
goto boy_mouth_1
}“Medium Heart” {
@PARKER BOY changes mouth into Medium Heart
goto boy_mouth_1
}“Change Color”{
goto boy_mouthcolor_1
} “Done”{
goto boy_custom_1
}
“Full Heart” {
@PARKER BOY changes mouth into Full Heart Natural
goto boy_mouth_1
}“Large Heart” {
@PARKER BOY changes mouth into Full Heart Large
goto boy_mouth_1}“Full Flat Top” {
@PARKER BOY changes mouth into Full Flat Top
goto boy_mouth_1
}“Full Flat Top Pouty” {
@PARKER BOY changes mouth into Full Flat Top Pouty
goto boy_mouth_1
}“Change Color”{
goto boy_mouthcolor_1
} “Done”{
goto boy_custom_1
}
“Full Lower Lip” {
@PARKER BOY changes mouth into Full Lower Lip Sharp
goto boy_mouth_1
}“Full Lower Lip Heart” {
@PARKER BOY changes mouth into Full Lower Lip Heart
goto boy_mouth_1
}“Change Color”{
goto boy_mouthcolor_1
} “Done”{
goto boy_custom_1
}

####################### MOUTH COLOR #######################

label boy_mouthcolor_1

    NARRATOR
All lip colors.

choice
“Natural” {
goto boy_NaturalColors_1
} “Gloss” {
goto boy_GlossColors_1
} “Matte” {
goto boy_MatteColors_1
} “Done”{
goto boy_custom_1
} “Change Lip Shape” {
goto boy_mouth_1
}

label boy_NaturalColors_1

    NARRATOR
Natural lip colors.

choice [shouldPaginate: YES]
“Fair Rose” {
@PARKER BOY changes mouthColor into Fair Rose Matte
goto boy_NaturalColors_1
} “Fair Neutral” {
@PARKER BOY changes mouthColor into Fair Neutral Matte
goto boy_NaturalColors_1
} “Fair Gold” {
@PARKER BOY changes mouthColor into Fair Gold Matte
goto boy_NaturalColors_1
} “Beige Light Gold” {
@PARKER BOY changes mouthColor into Beige Light Gold Matte
goto boy_NaturalColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Beige Gold” {
@PARKER BOY changes mouthColor into Beige Gold Matte
goto boy_NaturalColors_1
} “Beige Rose” {
@PARKER BOY changes mouthColor into Beige Rose
goto boy_NaturalColors_1
} “Beige Deep Neutral” {
@PARKER BOY changes mouthColor into Beige Deep Neutral
goto boy_NaturalColors_1
} “Medium Nude” {
@PARKER BOY changes mouthColor into Neutral Medium Nude Matte
goto boy_NaturalColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Tan Deep Gold” {
@PARKER BOY changes mouthColor into Tan Deep Gold
goto boy_NaturalColors_1
} “Tan Deep Neutral” {
@PARKER BOY changes mouthColor into Tan Deep Neutral
goto boy_NaturalColors_1
} “Brown Neutral” {
@PARKER BOY changes mouthColor into Brown Neutral
goto boy_NaturalColors_1
} “Brown Gold” {
@PARKER BOY changes mouthColor into Brown Gold
goto boy_NaturalColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Brown Deep Gold” {
@PARKER BOY changes mouthColor into Brown Deep Gold
goto boy_NaturalColors_1
} “Brown Deep Rose” {
@PARKER BOY changes mouthColor into Brown Deep Rose
goto boy_NaturalColors_1
} “Gold Deep Matte” {
@PARKER BOY changes mouthColor into Gold Deep Matte
goto boy_NaturalColors_1
} “Done” {
goto boy_custom_1
} “Try Other Colors” {
goto boy_mouthcolor_1
}

label boy_GlossColors_1

    NARRATOR
Gloss lipstick colors.

choice [shouldPaginate: YES]
“Peach” {
@PARKER BOY changes mouthColor into Peach Gloss
goto boy_GlossColors_1
} “Light Peach” {
@PARKER BOY changes mouthColor into Pink Peach Lt Gloss
goto boy_GlossColors_1
} “Beige Pink” {
@PARKER BOY changes mouthColor into Pink Beige Gloss
goto boy_GlossColors_1
} “Medium Pink” {
@PARKER BOY changes mouthColor into Pink Medium Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Warm Pink” {
@PARKER BOY changes mouthColor into Pink Warm Gloss
goto boy_GlossColors_1
} “Hot Pink” {
@PARKER BOY changes mouthColor into Pink Hot Gloss
goto boy_GlossColors_1
} “Deep Pink” {
@PARKER BOY changes mouthColor into Pink Deep Gloss
goto boy_GlossColors_1
} “Rose” {
@PARKER BOY changes mouthColor into Rose Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Pink Peach” {
@PARKER BOY changes mouthColor into Pink Peach Medium Gloss
goto boy_GlossColors_1
} “Light Nude” {
@PARKER BOY changes mouthColor into Rose Light Nude Gloss
goto boy_GlossColors_1
} “Medium Nude” {
@PARKER BOY changes mouthColor into Rose Medium Nude Gloss
goto boy_GlossColors_1
} “Dark Nude” {
@PARKER BOY changes mouthColor into Rose Dark Nude Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Mauve” {
@PARKER BOY changes mouthColor into Mauve Gloss
goto boy_GlossColors_1
} “Pastel Purple” {
@PARKER BOY changes mouthColor into Purple Pastel Gloss
goto boy_GlossColors_1
} “Plum” {
@PARKER BOY changes mouthColor into Plum Gloss
goto boy_GlossColors_1
} “Deep Purple” {
@PARKER BOY changes mouthColor into Purple Deep Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Red” {
@PARKER BOY changes mouthColor into Red Gloss
goto boy_GlossColors_1
} “Deep Red” {
@PARKER BOY changes mouthColor into Red Deep Gloss
goto boy_GlossColors_1
} “Violet” {
@PARKER BOY changes mouthColor into Violet Gloss
goto boy_GlossColors_1
} “Black” {
@PARKER BOY changes mouthColor into Black Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Blood Orange” {
@PARKER BOY changes mouthColor into Blood Orange Gloss
goto boy_GlossColors_1
} “Red Garnet” {
@PARKER BOY changes mouthColor into Red Garnet Gloss
goto boy_GlossColors_1
} “Blackberry” {
@PARKER BOY changes mouthColor into Blackberry Gloss
goto boy_GlossColors_1
} “Pink Cashmere” {
@PARKER BOY changes mouthColor into Pink Cashmere Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Ash Deep” {
@PARKER BOY changes mouthColor into Ash Deep Gloss
goto boy_GlossColors_1
} “Dark Mauve” {
@PARKER BOY changes mouthColor into Dark Mauve Gloss
goto boy_GlossColors_1
} “Dark Amethyst” {
@PARKER BOY changes mouthColor into Dark Amethyst Gloss
goto boy_GlossColors_1
} “Royal Blue” {
@PARKER BOY changes mouthColor into Royal Blue Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Dark Apricot” {
@PARKER BOY changes mouthColor into Dark Apricot Gloss
goto boy_GlossColors_1
} “Copper Deep” {
@PARKER BOY changes mouthColor into Copper Deep Gloss
goto boy_GlossColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}

label boy_MatteColors_1

    NARRATOR
Matte lipstick colors.

choice [shouldPaginate: YES]
“Peach” {
@PARKER BOY changes mouthColor into Peach Matte
goto boy_MatteColors_1
} “Light Peach” {
@PARKER BOY changes mouthColor into Pink Peach Light Matte
goto boy_MatteColors_1
} “Beige Pink” {
@PARKER BOY changes mouthColor into Pink Beige Matte
goto boy_MatteColors_1
} “Medium Pink” {
@PARKER BOY changes mouthColor into Pink Medium Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Warm Pink” {
@PARKER BOY changes mouthColor into Pink Warm Matte
goto boy_MatteColors_1
} “Hot Pink” {
@PARKER BOY changes mouthColor into Pink Hot Matte
goto boy_MatteColors_1
} “Deep Pink” {
@PARKER BOY changes mouthColor into Pink Deep Matte
goto boy_MatteColors_1
} “Rose” {
@PARKER BOY changes mouthColor into Rose Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Pink Peach” {
@PARKER BOY changes mouthColor into Pink Peach Medium Matte
goto boy_MatteColors_1
} “Light Nude” {
@PARKER BOY changes mouthColor into Rose Light Nude Matte
goto boy_MatteColors_1
} “Medium Nude” {
@PARKER BOY changes mouthColor into Rose Medium Nude Matte
goto boy_MatteColors_1
} “Dark Nude” {
@PARKER BOY changes mouthColor into Rose Dark Nude Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Mauve” {
@PARKER BOY changes mouthColor into Mauve Matte
goto boy_MatteColors_1
} “Pastel Purple” {
@PARKER BOY changes mouthColor into Purple Pastel Matte
goto boy_MatteColors_1
} “Plum” {
@PARKER BOY changes mouthColor into Plum Matte
goto boy_MatteColors_1
} “Deep Purple” {
@PARKER BOY changes mouthColor into Purple Deep Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Red” {
@PARKER BOY changes mouthColor into Red Matte
goto boy_MatteColors_1
} “Deep Red” {
@PARKER BOY changes mouthColor into Red Deep Matte
goto boy_MatteColors_1
} “Violet” {
@PARKER BOY changes mouthColor into Violet Matte
goto boy_MatteColors_1
} “Black” {
@PARKER BOY changes mouthColor into Black Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Blood Orange” {
@PARKER BOY changes mouthColor into Blood Orange Matte
goto boy_MatteColors_1
} “Red Garnet” {
@PARKER BOY changes mouthColor into Red Garnet Matte
goto boy_MatteColors_1
} “Blackberry” {
@PARKER BOY changes mouthColor into Blackberry Matte
goto boy_MatteColors_1
} “Pink Cashmere” {
@PARKER BOY changes mouthColor into Pink Cashmere Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Ash Deep” {
@PARKER BOY changes mouthColor into Ash Deep Matte
goto boy_MatteColors_1
} “Dark Mauve” {
@PARKER BOY changes mouthColor into Dark Mauve Matte
goto boy_MatteColors_1
} “Dark Amethyst” {
@PARKER BOY changes mouthColor into Dark Amethyst Matte
goto boy_MatteColors_1
} “Royal Blue” {
@PARKER BOY changes mouthColor into Royal Blue Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}
“Dark Apricot” {
@PARKER BOY changes mouthColor into Dark Apricot Matte
goto boy_MatteColors_1
} “Copper Deep” {
@PARKER BOY changes mouthColor into Copper Deep Matte
goto boy_MatteColors_1
} “Try Other Colors” {
goto boy_mouthcolor_1
} “Done” {
goto boy_custom_1
}

####################### NOSE SHAPE #######################

label boy_nose_1

    NARRATOR
Nose shapes.

choice [shouldPaginate: YES]
“Button Wide” {
@PARKER BOY changes nose into Button Wide
goto boy_nose_1
} “Button Round” {
@PARKER BOY changes nose into Button Round
goto boy_nose_1
} “Grecian Narrow” {
@PARKER BOY changes nose into Grecian Narrow
goto boy_nose_1
} “Grecian Hooked”{
@PARKER BOY changes nose into Hooked Grecian
goto boy_nose_1
} “Grecian Round” {
@PARKER BOY changes nose into Grecian Round
goto boy_nose_1
} “Done”{
goto boy_custom_1
}
“Round Wide” {
@PARKER BOY changes nose into Round Wide
goto boy_nose_1
} “Generic” {
@PARKER BOY changes nose into Male Generic
goto boy_nose_1
} “Straight Narrow” {
@PARKER BOY changes nose into Straight Narrow
goto boy_nose_1
} “Bulbous Downturned” {
@PARKER BOY changes nose into Bulbous Downturned
goto boy_nose_1
} “Round Flared Downturned” {
@PARKER BOY changes nose into Round Flared Downturned
goto boy_nose_1
} “Done”{
goto boy_custom_1
}
“Straight Flat” {
@PARKER BOY changes nose into Straight Flat
goto boy_nose_1
} “Straight Pointed” {
@PARKER BOY changes nose into Straight Pointed
goto boy_nose_1
} “Roman Straight Broad” {
@PARKER BOY changes nose into Roman Straight Broad
goto boy_nose_1
} “Aquiline Medium” {
@PARKER BOY changes nose into Aquiline Medium
goto boy_nose_1
} “Straight Wide” {
@PARKER BOY changes nose into Straight Wide
goto boy_nose_1
} “Done”{
goto boy_custom_1
}
“Grecian Downturned” {
@PARKER BOY changes nose into Grecian Downturned
goto boy_nose_1
} “Done”{
goto boy_custom_1
}
“Round Broad” {
@PARKER BOY changes nose into Round Broad
goto boy_nose_1
}

####################### HAIR STYLE #######################

label boy_hair_1

    NARRATOR
All hairstyles.

choice
“Short Hair” {
goto boy_hair_short_1
} “Medium Hair” {
goto boy_hair_medium_1
} “Long Hair” {
goto boy_hair_long_1
} “Done” {
goto boy_custom_1
} “Change Color” {
goto boy_haircolor_1
}

label boy_hair_short_1

    NARRATOR
Short hairstyles.

choice [shouldPaginate: YES]
“Military Fade” {
@PARKER BOY changes hair into Military Fade Cut
goto boy_hair_short_1
} “Slicked Back” {
@PARKER BOY changes hair into Slicked Back Solid
goto boy_hair_short_1
} “Curly Fade” {
@PARKER BOY changes hair into Short Curly Fade
goto boy_hair_short_1
} “Curly Mohawk” {
@PARKER BOY changes hair into Curly Mohawk
goto boy_hair_short_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Crew Cut” {
@PARKER BOY changes hair into Crew Cut
goto boy_hair_short_1
} “Conservative Cut” {
@PARKER BOY changes hair into Conservative Cut
goto boy_hair_short_1
} “Undercut Short” {
@PARKER BOY changes hair into Undercut Short Straight Texture
goto boy_hair_short_1
} “Receding Short” {
@PARKER BOY changes hair into Receding Short Straight
goto boy_hair_short_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Receded Hairline” {
@PARKER BOY changes hair into Receded Hairline
goto boy_hair_short_1
} “Back to Hairstyles” {
goto boy_hair_1
} “Change Color” {
goto boy_haircolor_1
}

label boy_hair_medium_1

    NARRATOR
Medium hairstyles.

choice [shouldPaginate: YES]
“Taper Wavy” {
@PARKER BOY changes hair into Medium Taper Wavy
goto boy_hair_medium_1
} “Side Curls” {
@PARKER BOY changes hair into Medium Side Curls
goto boy_hair_medium_1
} “Mohawk Dreads” {
@PARKER BOY changes hair into Mohawk Dreads Short
goto boy_hair_medium_1
} “Top Dreads Loose” {
@PARKER BOY changes hair into Dreads Loose Top Short
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Long Messy Top Curls” {
@PARKER BOY changes hair into Long Top Messy Curls
goto boy_hair_medium_1
} “Side Part Curly” {
@PARKER BOY changes hair into Short Side Part Curly
goto boy_hair_medium_1
} “Messy Undercut” {
@PARKER BOY changes hair into Messy Undercut
goto boy_hair_medium_1
} “Natural Waves” {
@PARKER BOY changes hair into Medium Waves Natural
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Medium Wavy Messy” {
@PARKER BOY changes hair into Medium Wavy Messy
goto boy_hair_medium_1
} “Tousled Curls” {
@PARKER BOY changes hair into Tousled Loose Curls Long
goto boy_hair_medium_1
} “Parted Bangs” {
@PARKER BOY changes hair into Long Bang Short Hair
goto boy_hair_medium_1
} “Generic Short” {
@PARKER BOY changes hair into Generic Short
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Twists” {
@PARKER BOY changes hair into Short Twists
goto boy_hair_medium_1
} “Messy Curls” {
@PARKER BOY changes hair into Short Messy Curls
goto boy_hair_medium_1
} “Messy Wavy” {
@PARKER BOY changes hair into Wavy Messy
goto boy_hair_medium_1
} “Quiff” {
@PARKER BOY changes hair into Wavy Quiff
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Dreads Mohawk” {
@PARKER BOY changes hair into Dreads Mohawk Wrap Up Hair
goto boy_hair_medium_1
} “Small Bun” {
@PARKER BOY changes hair into Small Bun
goto boy_hair_medium_1
} “Manbun” {
@PARKER BOY changes hair into Manbun
goto boy_hair_medium_1
} “Side Shave” {
@PARKER BOY changes hair into Short Side Shave
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Pixie” {
@PARKER BOY changes hair into Short Pixie
goto boy_hair_medium_1
} “Messy Side Part” {
@PARKER BOY changes hair into Medium Side Part Flip
goto boy_hair_medium_1
} “Messy Fluffy” {
@PARKER BOY changes hair into Medium Messy Fluffy Parted
goto boy_hair_medium_1
} “Bangs Fluffy” {
@PARKER BOY changes hair into Straight Bang Fluffy Hair Hair
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Type 4 Afro” {
@PARKER BOY changes hair into Type 4 Afro
goto boy_hair_medium_1
} “Shoulder Length Tousled” {
@PARKER BOY changes hair into Shoulder Length Tousled
goto boy_hair_medium_1
} “Side Part Wavy Tousled” {
@PARKER BOY changes hair into Side Part Wavy Tousled
goto boy_hair_medium_1
} “Slicked Back Side Shaved Tousled” {
@PARKER BOY changes hair into Slicked Back Side Shaved Tousled
goto boy_hair_medium_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}

label boy_hair_long_1

    NARRATOR
Long hairstyles.

choice [shouldPaginate: YES]
“Shaggy” {
@PARKER BOY changes hair into Short Shaggy
goto boy_hair_long_1
} “Ponytail Wavy” {
@PARKER BOY changes hair into Small Ponytail Wavy Parted Hair
goto boy_hair_long_1
} “Side Swept” {
@PARKER BOY changes hair into Side Swept Medium Hair Solid
goto boy_hair_long_1
} “Messy Wild Unkempt” {
@PARKER BOY changes hair into Messy Wild Unkempt
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Afro” {
@PARKER BOY changes hair into Afro
goto boy_hair_long_1
} “Curly Afro” {
@PARKER BOY changes hair into Curly Loose Afro Hair
goto boy_hair_long_1
} “Medium Dreadlocks” {
@PARKER BOY changes hair into Medium Dreadlocks
goto boy_hair_long_1
} “Long Dreadlocks” {
@PARKER BOY changes hair into Long Dreadlocks
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Braided” {
@PARKER BOY changes hair into Long Braided
goto boy_hair_long_1
} “Dreads Bun” {
@PARKER BOY changes hair into Dreads Long Loose Bun
goto boy_hair_long_1
} “Medium Shoulder Dreads” {
@PARKER BOY changes hair into Dreads Loose Medium Shoulder Hair
goto boy_hair_long_1
} “Medium Curly” {
@PARKER BOY changes hair into Medium Curly
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Natural Afro” {
@PARKER BOY changes hair into Natural Afro
goto boy_hair_long_1
} “Side Shave Braids” {
@PARKER BOY changes hair into Curly Braids
goto boy_hair_long_1
} “Short Wavy” {
@PARKER BOY changes hair into Short Wavy
goto boy_hair_long_1
} “Parted Straight” {
@PARKER BOY changes hair into Straight Medium
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Long Wavy” {
@PARKER BOY changes hair into Wavy Long
goto boy_hair_long_1
} “Long Curls” {
@PARKER BOY changes hair into Long Curls
goto boy_hair_long_1
} “Messy Curls” {
@PARKER BOY changes hair into Medium Messy Curls
goto boy_hair_long_1
} “Long Wavy Ponytail” {
@PARKER BOY changes hair into Updo Pony Wavy Long
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Punk Hair” {
@PARKER BOY changes hair into Cropped Punk Cut
goto boy_hair_long_1
} “Long Slicked Back” {
@PARKER BOY changes hair into Long Straight Slicked Back
goto boy_hair_long_1
} “Emo Hair” {
@PARKER BOY changes hair into Emo Pixie
goto boy_hair_long_1
} “Scene Hair” {
@PARKER BOY changes hair into Scene Swoosh
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Layered Side Part” {
@PARKER BOY changes hair into Long Layered Side Part
goto boy_hair_long_1
} “Loose Curls” {
@PARKER BOY changes hair into Long Loose Curls
goto boy_hair_long_1
} “Wavy Blowout” {
@PARKER BOY changes hair into Long Wavy Blowout
goto boy_hair_long_1
} “Thick Curls” {
@PARKER BOY changes hair into Long Thick Curls
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}
“Widows Peak” {
@PARKER BOY changes hair into Long Tapered Widows Peak
goto boy_hair_long_1
} “Wavy Parted” {
@PARKER BOY changes hair into Long Wavy Parted
goto boy_hair_long_1
} “3A Shoulder Curls” {
@PARKER BOY changes hair into 3A Shoulder Length Curls Hair
goto boy_hair_long_1
} “Shoulder Locks” {
@PARKER BOY changes hair into Shoulder Length Locks Hair
goto boy_hair_long_1
} “Change Color” {
goto boy_haircolor_1
} “Back to Hairstyles” {
goto boy_hair_1
}

####################### HAIR COLOR #######################

label boy_haircolor_1

    NARRATOR
All hair colors.

choice
“Dark”{
goto boy_hairDark_1
}“Light” {
goto boy_hairLight_1
}“Dyed”{
goto boy_hairDye_1
}“Done”{
goto boy_custom_1
} “Back to Styles” {
goto boy_hair_1
}

label boy_hairDark_1

    NARRATOR
Dark hair colors.

choice [shouldPaginate: YES]
“Light Brown” {
@PARKER BOY changes hairColor into Light Brown
goto boy_hairDark_1
}“Warm Brown” {
@PARKER BOY changes hairColor into Medium Warm Brown
goto boy_hairDark_1
}“Medium Brown” {
@PARKER BOY changes hairColor into Medium Brown
goto boy_hairDark_1
}“Chestnut Brown”{
@PARKER BOY changes hairColor into Chestnut Brown
goto boy_hairDark_1
}“Different Colors”{
goto boy_haircolor_1
}“Done”{
goto boy_custom_1
}
“Dark Brown”{
@PARKER BOY changes hairColor into Dark Brown
goto boy_hairDark_1
}“Brunette Brown”{
@PARKER BOY changes hairColor into Brunette Brown
goto boy_hairDark_1
}“Ginger Red” {
@PARKER BOY changes hairColor into Ginger Red
goto boy_hairDark_1
}“Burgundy Red” {
@PARKER BOY changes hairColor into Burgundy Red
goto boy_hairDark_1
}“Different Colors”{
goto boy_haircolor_1
}“Done”{
goto boy_custom_1
}
“Deep Brown” {
@PARKER BOY changes hairColor into Deep Brown
goto boy_hairDark_1
}“Brown Black” {
@PARKER BOY changes hairColor into Brown Black
goto boy_hairDark_1
}“Dark Black” {
@PARKER BOY changes hairColor into Black Dark
goto boy_hairDark_1
}“Jet Black” {
@PARKER BOY changes hairColor into Black Jet
goto boy_hairDark_1
}“Different Colors”{
goto boy_haircolor_1
}“Done”{
goto boy_custom_1
}

label boy_hairLight_1

    NARRATOR
Light hair colors.

choice [shouldPaginate: YES]
“Platinum Blonde” {
@PARKER BOY changes hairColor into Platinum Blonde
goto boy_hairLight_1
}“Dirty Blonde” {
@PARKER BOY changes hairColor into Dirty Blonde
goto boy_hairLight_1
}“Honey Blonde” {
@PARKER BOY changes hairColor into Honey Blonde
goto boy_hairLight_1
}“Strawberry Blonde” {
@PARKER BOY changes hairColor into Strawberry Blonde
goto boy_hairLight_1
}“Different Colors”{
goto boy_haircolor_1
}“Done”{
goto boy_custom_1
}
“Medium Blonde” {
@PARKER BOY changes hairColor into Blonde Medium
goto boy_hairLight_1
}“Ash Blonde” {
@PARKER BOY changes hairColor into Ash Blonde
goto boy_hairLight_1
}“Peach Blonde” {
@PARKER BOY changes hairColor into Peach Blonde
goto boy_hairLight_1
}“Platinum White” {
@PARKER BOY changes hairColor into Platinum White
goto boy_hairLight_1
}“Different Colors”{
goto boy_haircolor_1
}“Done”{
goto boy_custom_1
}

label boy_hairDye_1

    NARRATOR
Dyed hair colors.

choice
“Pink/Purple” {
goto boy_hairDye_Pink_1
}“Blue/Green” {
goto boy_hairDye_Blue_1
}“Red/Yellow” {
goto boy_hairDye_Red_1
}“White/Grey” {
goto boy_hairDye_White_1
}“Different Colors”{
goto boy_haircolor_1
}“Done”{
goto boy_custom_1
}

label boy_hairDye_Pink_1

    NARRATOR
Pink and purple hair colors.

choice [shouldPaginate: YES]
“Hot Pink” {
@PARKER BOY changes hairColor into Hot Pink
goto boy_hairDye_Pink_1
} “Light Pink” {
@PARKER BOY changes hairColor into Pink Lt
goto boy_hairDye_Pink_1
} “Warm Pink” {
@PARKER BOY changes hairColor into Warm Pink
goto boy_hairDye_Pink_1
} “Rose Gold” {
@PARKER BOY changes hairColor into Rose Gold
goto boy_hairDye_Pink_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}
“Purple” {
@PARKER BOY changes hairColor into Red Purple
goto boy_hairDye_Pink_1
} “Purple Lilac” {
@PARKER BOY changes hairColor into Purple Lilac
goto boy_hairDye_Pink_1
} “Plum” {
@PARKER BOY changes hairColor into Plum
goto boy_hairDye_Pink_1
} “Dark Purple” {
@PARKER BOY changes hairColor into Purple
goto boy_hairDye_Pink_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}
“Pastel Lavender” {
@PARKER BOY changes hairColor into Pastel Purple Lavender
goto boy_hairDye_Pink_1
}“Done” {
goto boy_custom_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}

label boy_hairDye_Blue_1

    NARRATOR
Blue and green hair colors.

choice [shouldPaginate: YES]
“Blue” {
@PARKER BOY changes hairColor into Blue
goto boy_hairDye_Blue_1
} “Light Blue” {
@PARKER BOY changes hairColor into Cornflower Blue
goto boy_hairDye_Blue_1
} “Aqua Blue” {
@PARKER BOY changes hairColor into Aqua Blue
goto boy_hairDye_Blue_1
} “Dark Blue” {
@PARKER BOY changes hairColor into Blue Black
goto boy_hairDye_Blue_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}
“Green” {
@PARKER BOY changes hairColor into Green
goto boy_hairDye_Blue_1
} “Lime Green” {
@PARKER BOY changes hairColor into Yellow Green
goto boy_hairDye_Blue_1
} “Mint” {
@PARKER BOY changes hairColor into Mint
goto boy_hairDye_Blue_1
} “Aqua Green” {
@PARKER BOY changes hairColor into Aqua Green
goto boy_hairDye_Blue_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}
“Pastel Blue” {
@PARKER BOY changes hairColor into Pastel Blue
goto boy_hairDye_Blue_1
} “Pastel Mint” {
@PARKER BOY changes hairColor into Pastel Mint
goto boy_hairDye_Blue_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}

label boy_hairDye_Red_1

    NARRATOR
Red, yellow, & orange hair colors.

choice [shouldPaginate: YES]
“Yellow” {
@PARKER BOY changes hairColor into Yellow
goto boy_hairDye_Red_1
} “Orange” {
@PARKER BOY changes hairColor into Orange
goto boy_hairDye_Red_1
} “Red” {
@PARKER BOY changes hairColor into Red
goto boy_hairDye_Red_1
} “Copper Red” {
@PARKER BOY changes hairColor into Copper Red
goto boy_hairDye_Red_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}

label boy_hairDye_White_1

    NARRATOR
White & grey hair colors.

choice [shouldPaginate: YES]
“Grey” {
@PARKER BOY changes hairColor into Cool Gray
goto boy_hairDye_White_1
} “Light Grey” {
@PARKER BOY changes hairColor into Aqua Gray
goto boy_hairDye_White_1
}“White” {
@PARKER BOY changes hairColor into Warm White
goto boy_hairDye_White_1
}“Ice” {
@PARKER BOY changes hairColor into Platinum Ice
goto boy_hairDye_White_1
}“Back to Dyed Colors”{
goto boy_hairDye_1
}“Done” {
goto boy_custom_1
}

label boy_end_1
NARRATOR
Are you happy with how he looks?
choice
“Yes, he looks amazing!” {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Customization Template Credit
@PARKER BOY is primp_neutral
} “No, I want to change something.” {
goto boy_custom_1
}

@PARKER BOY exits right and PARKER BOY does it while walk_neutral_loop
#MALE CUSTOMIZATION TEMPLATE GOES HERE (OPTIONAL)
#MALE LI STORY LINE GOES HERE

#END OF EPISODE GOES HERE

you used the same template for the MC and for the female LI - you must have got error about duplicate labels.

You cant have the same labels in one chapter.
Therefore if you CC more than 1 character of the same genre you have to use template for multiple characters:

thank you so much!

1 Like

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