Creating labels

How do you create labels for makeup and hairstyles?

1 Like

Moved to Directing Helps and Tips since this is more related to coding than art. Make sure to check out our Forum Tutorial for more info about where to correctly create topics, and feel to PM me if there are any questions. :wink:

label makeover_time05

    TAYLER (think)
(How should I look today?)

choice
“Hair Style.” {

goto hair_style05

}
“Lipstick.” {

goto lip_style05

}
“This is perfect!” {

goto avatar_makeup05

}

label hair_style05

    TAYLER (think)
(What hairstyle should I choose?)

choice
“Monday Morning Updo”{

@TAYLER changes hair into Monday Morning Updo

@TAYLER starts primp_condescend

@pause for 2

}
“Diva Curls”{

@TAYLER changes hair into Diva Curls

@TAYLER starts primp_condescend

@pause for 2

}
“Fishtail Braid”{

@TAYLER changes hair into Fishtail Braid

@TAYLER starts primp_condescend

@pause for 2

}
“Straight”{

@TAYLER changes hair into Straight

@TAYLER starts primp_condescend

@pause for 2

}
TAYLER (think)
(Hmm…sure about this?)

choice
“Yes.”{

    TAYLER (strike_a_pose)
(My hair looks amazing.)

@TAYLER is idle

goto makeover_time05

}
“No.”{

goto hair_style05

}

label lip_style05

    TAYLER (think)
(What lip color should I choose?)

choice
“Cherry Red”{

@TAYLER changes mouthColor into Cherry Red

@TAYLER starts admire

@pause for a beat

}
“Scarlet”{

@TAYLER changes mouthColor into Scarlet

@TAYLER starts admire

@pause for a beat

}
“Ruby Red”{

@TAYLER changes mouthColor into Ruby Red

@TAYLER starts admire

@pause for a beat

}
“Bubblegum Pink”{

@TAYLER changes mouthColor into Bubblegum Pink

@TAYLER starts admire

@pause for a beat

}
“Bordeaux”{

@TAYLER changes mouthColor into Bordeaux

@TAYLER starts admire

@pause for a beat

}
“Blush”{

@TAYLER changes mouthColor into Blush

@TAYLER starts admire

@pause for a beat

}
TAYLER (think)
(Hmm…sure about this?)

choice
“Yes.”{

    TAYLER (strike_a_pose)
(Love this color.)

@TAYLER is idle

goto makeover_time05

}
“No.”{

goto lip_style05

}

label avatar_makeup05

    NARRATOR
Are you sure you want this hair style and lip color?

choice
“Yes.”{

    TAYLER (flirt_wink_forward)
(I look amazing.)

}
“No.”{

goto makeover_time05

}

Here is how I put mine in. you can use this one or change it up and add colors and styles. :slight_smile:
Hope this helps.

1 Like

Also if you want more then one make up/ hair change make sure you change the 5 in each label to any other number so that its not the same label like this

label makeover_time02

    TAYLER (think)
(How should I look today?)

choice
“Hair Style.” {

goto hair_style02

}
“Lipstick.” {

goto lip_style02

And so on and so on.

1 Like

@Dara.Amarie has some awesome templates for just that here:

Thank you so much

1 Like

You’re welcome. Glad i could help.

1 Like

You can read about labels here:

A goto leads to a label that it shares the same name with. Your labels need to have different names within your episode (you can’t have duplicate names for your label) So, label makeover_girl can only be used once in your episode. You can’t write it again until the next episode. If you want another character customized, you can copy that label and add a 2 to the end, to avoid duplicate labels within your episode. You can have multiple gotos that share the same name though and these gotos lead to a label they share the same name with (goto makeover_girl leads to label makeover_girl and goto makeover_girl2 leads to label makeover_girl2 and so on) So again, you can have multiple goto makeover_girl 's but only one label makeover_girl within your episode. You can have multiple goto makeover_girl2 's in your episode, but only one label makeover_girl2 , and so forth.

Hope this makes sense ^^

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