How to create new hairstyles ink

Hello everyone. I would like to know how to create new hairstyles to our characters and leave the choice to the readers of them to choose. thank you for your answers

Like a hairstyle template?

1 Like

Here’s a tempelate for Hair and lip. You just have to add in the other styles you’d like!
Hope this helps!

label hair_and_lip
NARRATOR
What do you want to change?
choice
“Hairstyle” {
@DAHLIA starts idle
goto HLT_Hair
} “Lipstick” {
@DAHLIA starts idle
goto HLT_Lip
} “This looks good!” {
goto HLT_Finish
}
label HLT_Hair
NARRATOR
Choose your hairstyle.
choice
“Beach Wave Hair”{
@DAHLIA changes hair into Beach Wave Hair
goto HLT_Hair
}
“Straight”{
@DAHLIA changes hair into Straight
goto HLT_Hair
}“Messy Back Bun”{
@DAHLIA changes hair into Messy Back Bun
goto HLT_Hair
}“High Ponytail”{
@DAHLIA changes hair into High Ponytail
goto HLT_Hair
}“Fishtail Braid”{
@DAHLIA changes hair into Fishtail Braid
goto HLT_Hair
}”Braided Crown”{
@DAHLIA changes hair into Braid Crown Updo
goto HLT_Hair
}“Done”{
goto hair_and_lip
}
label HLT_Lip
NARRATOR
Choose your lip color.
choice

“Natural Colors” {
goto HLT_Natural
} “Bright Colors” {
goto HLT_Bright
} “Dark Colors” {
goto HLT_Dark
}“Done”{
goto hair_and_lip
}
label HLT_Natural
NARRATOR
Choose your lip color.
choice
“Blush” {
@DAHLIA changes mouthColor into Blush
goto HLT_Natural
} “Dune” {
@DAHLIA changes mouthColor into Dune
goto HLT_Natural
} “Ivory” {
@DAHLIA changes mouthColor into Ivory
goto HLT_Natural
} “Mocha” {
@DAHLIA changes mouthColor into Mocha
goto HLT_Natural
} “Taupe” {
@DAHLIA changes mouthColor into Taupe
goto HLT_Natural
} “Terracotta” {
@DAHLIA changes mouthColor into Terracotta
goto HLT_Natural
} “Toffee” {
@DAHLIA changes mouthColor into Toffee
goto HLT_Natural
} “Next Page” {
goto HLT_Natural2
} “Try Other Colors” {
goto HLT_Lip
} “Done” {
goto hair_and_lip
}
label HLT_Natural2
NARRATOR

Choose your lip color.

choice
“Umber” {
@DAHLIA changes mouthColor into Umber
goto HLT_Natural2
} “Rosewood” {
@DAHLIA changes mouthColor into Rosewood
goto HLT_Natural2
} “Dusty Rose” {
@DAHLIA changes mouthColor into Dusty Rose
goto HLT_Natural2
} “Dark” {
@DAHLIA changes mouthColor into Dark
goto HLT_Natural2
} “Sable” {
@DAHLIA changes mouthColor into Sable
goto HLT_Natural2
} “Chestnut” {
@DAHLIA changes mouthColor into Chestnut
goto HLT_Natural2
} “Previous Page” {
goto HLT_Natural
} “Try Other Colors” {
goto HLT_Lip
} “Done” {
goto hair_and_lip
}
label HLT_Bright
NARRATOR
Choose your lip color.
choice
“Bubblegum Pink” {
@DAHLIA changes mouthColor into Bubblegum Pink
goto HLT_Bright
} “Champagne” {
@DAHLIA changes mouthColor into Champagne
goto HLT_Bright
} “Olive” {
@DAHLIA changes mouthColor into Olive
goto HLT_Bright
} “Cherry Red” {
@DAHLIA changes mouthColor into Cherry Red
goto HLT_Bright

} “Orange Crush” {
@DAHLIA changes mouthColor into Orange Crush
goto HLT_Bright
} “Raspberry” {
@DAHLIA changes mouthColor into Raspberry
goto HLT_Bright
} “Next Page” {
goto HLT_Bright2
} “Try Other Colors” {
goto HLT_Lip
} “Done” {
goto hair_and_lip
}
label HLT_Bright2
NARRATOR
Choose your lip color.
choice
“Rose” {
@DAHLIA changes mouthColor into Rose
goto HLT_Bright2
} “Ruby Red” {
@DAHLIA changes mouthColor into Ruby Red
goto HLT_Bright2
} “Seafoam” {
@DAHLIA changes mouthColor into Seafoam
goto HLT_Bright2
} “Sky Blue” {
@DAHLIA changes mouthColor into Sky Blue
goto HLT_Bright2
} “White” {
@DAHLIA changes mouthColor into White
goto HLT_Bright2
} “Lavender” {
@DAHLIA changes mouthColor into Lavender
goto HLT_Bright2
} “Previous Page” {
goto HLT_Bright
} “Try Other Colors” {
goto HLT_Lip
} “Done” {
goto hair_and_lip
}
label HLT_Dark

    NARRATOR
Choose your lip color.

choice
“Azure” {
@DAHLIA changes mouthColor into Azure
goto HLT_Dark
} “Raven” {
@DAHLIA changes mouthColor into Raven
goto HLT_Dark
} “Bordeaux” {
@DAHLIA changes mouthColor into Bordeaux
goto HLT_Dark
} “Plum” {
@DAHLIA changes mouthColor into Plum
goto HLT_Dark
} “Emerald” {
@DAHLIA changes mouthColor into Emerald
goto HLT_Dark
} “Scarlet” {
@DAHLIA changes mouthColor into Scarlet
goto HLT_Dark
} “Wine” {
@DAHLIA changes mouthColor into Wine
goto HLT_Dark
} “Try Other Colors” {
goto HLT_Lip
} “Done” {
goto hair_and_lip
}

label HLT_Finish
NARRATOR
Is this the look you’re going for?
choice
“Yes, I look perfect!”{
goto story_continue
} “No, let me try a different color.”{
goto hair_and_lip
}

Yes that’s it :slight_smile:

1 Like

Glad I could help!

thank you so much for the answer. thank you also for giving me the technique for the color of the lips :slight_smile:

Your welcome. I finally understand all the directing myself excluding netting (Consequences to choices made). This is one thing I still don’t understand!