summaryrefslogblamecommitdiff
path: root/npc/functions/barber.txt
blob: 1aad85bad13af12a09b9a383d479893db99d1582 (plain) (tree)
1
2
3
4
5
6
7
8
9


                
              


                                         
                                                 
 































                                                       

                                           
                              
       
           


                                                 
 























                                                       
 

                                           
                                    


           
// Evol scripts.
// Authors:
//    Reid
//    Travolta
// Description:
//    Function for supporting barber NPC.

function	script	BarberChangeStyle	{

    menu
        l("Bald"), -,
        l("Bowl cut"), -,
        l("Combed back"), -,
        l("Emo"), -,
        l("Mohawk"), -,
        l("Pompadour"), -,
        l("Center parting"), -,
        l("Long and slick"), -,
        l("Short and curly"), -,
        l("Pigtails"), -,
        l("Long and curly"), -,
        l("Parted"), -,
        l("Perky ponytail"), -,
        l("Wave"), -,
        l("Mane"), -,
        l("Bun"), -,
        l("Wavy"), -,
        l("Bunches"), -,
        l("Long ponytail"), -,
        l("Infinitely long"), -,
        l("Choppy"), -,
        l("Wild"), -,
        l("Punk"), -,
        l("Imperial"), -,
        l("Side strand"), -,
        l("Messy"), -,
        l("Flat ponytail"), -,
        l("Tapered Nape"), -,
        l("As you want!"), -,
        l("Hmm, I'm fine for now, thank you."), L_Done;

    set @style, @menu;
    if (@style == 29) set @style, rand(28);
    setlook LOOK_HAIR, @style;
L_Done:
    return;
}

function	script	BarberChangeColor	{

    menu
        l("Off black"), -,
        l("Ash brown"), -,
        l("Dark brown"), -,
        l("Dark copper"), -,
        l("Auburn brown"), -,
        l("Honey brown"), -,
        l("Copper blonde"), -,
        l("Golden blonde"), -,
        l("Pure platinum"), -,
        l("Cherry blossom"), -,
        l("Pinky pink"), -,
        l("Fire red"), -,
        l("Light violet"), -,
        l("Purple plum"), -,
        l("Navy blue"), -,
        l("Lagoon blue"), -,
        l("Twisted teal"), -,
        l("String Green"), -,
        l("Forest Green"), -,
        l("Silver Grey"), -,
        l("Esperia Blue"), -,
        l("Surprise me"), -,
        l("Hmm, I'm fine for now, thank you."), L_Done;

    set @color, @menu - 1;
    if (@color == 21) set @color, rand(20);
    setlook LOOK_HAIR_COLOR, @color;
L_Done:
    return;
}