summaryrefslogtreecommitdiff
path: root/npc/001-2-4/robin.txt
blob: 5a38facd5e3d86f0347465aa6082e8cca34b2850 (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
55
56
57
58
59
60
61
62
63
64
65
// Evol scripts.
// Author:
//    Reid
// Description:
//    Librarian

001-2-4,27,33,0	script	Robin	NPC_ROBIN,{

    function need_help
    {
        speech S_LAST_NEXT,
            l("Do you need help with something?");

        switch (select(l("What kinds of books are there here?"),
                       l("Nothing.")))
        {
            case 1:
                closeclientdialog;
                npctalk3 l("Mostly manuals and tutorials but you won't find out until you open one!");
                break;
            case 2:
                closeclientdialog;
                npctalk3 l("Good day to you!");
        }
        return;
    }


    switch (rand(6))
    {
        case 0:
            npctalkonce l("No matter what people tell you, words and ideas can change the world.");
            break;
        case 1:
            npctalkonce l("In Artis they really do mythologize people when they die.");
            break;
        case 2:
            npctalkonce l("What counts in a book is like so many things, not what is on the outside, but what is on the inside.");
            break;
        case 3:
            npctalkonce l("An explorer left behind some incomplete manuscripts about the people and dangers in the land of Kaizei.");
            break;
        case 4:
            speech S_LAST_NEXT,
                l("Ow-oh!"),
                l("Introduce yourself instead of poking me around. I almost fell from the lader, savage...");

            setcamnpc "#001-2-4-Book1";

            speech S_NO_NPC_NAME,
                l("Go have a look at that shelf to my right, would you?"),
                l("You clearly need to be more public-spirited.");
            break;
        default:
            need_help;
            break;
    }

    close;

OnInit:
    .bodytype = BODYTYPE_3;
    .distance = 2;
    end;
}