summaryrefslogtreecommitdiff
path: root/npc/006-2-1/camilot.txt
blob: 8cd6b3c078d03e3734c345103426467359bca344 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// TMW2 scripts.
// Authors:
//    Saulc
//    Jesusalva
//    Reid
//    Travolta
//    +Seeds
// Description:
//    Camilot is the barber.

006-2-1,85,67,0	script	Camilot	NPC_PIOU_BARBER,{
     mesn;
    mesq l("Hi! I'm Camilot, a piou specialist in humanoid hairstyles. Do you want a hair cut?");

    do
    {
        select
            l("What is my current hairstyle and hair color?"),
            l("I'd like to get a different style."),
            l("Can you do something with my color?"),
            l("I'm allergic to piou, goodbye.");

        switch (@menu)
        {
            case 1:
                BarberSayStyle 2;
                break;
            case 2:
                BarberChangeStyle;
                speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
                    l("Enjoy your new style.");
                    l("Anything else?");
                break;
            case 3:
                BarberChangeColor;
                speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
                    l("I hope you like this color.");
                    l("Anything else?");
                break;
            case 4:
                speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
                    l("Come and visit again!");

                goodbye;
        }
    } while (1);
    close;


OnInit:
    .sex = G_OTHER;
    .distance = 5;
    end;
}