summaryrefslogtreecommitdiff
path: root/npc/functions/villagertalk.txt
blob: 998036219b4a9ba8a6de3046f4c352a19f224e24 (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
// Evol functions.
// Authors:
//    Reid
//    Qwerty Dragon
//    Akko Teru
// Description:
//    Tell a random sentence. || There ought to be a law!

function	script	villagertalk	{

    function darn_or_smile
    {
        .@darn = rand(42);

        if (.@darn < 26)
        {
            emotion 103; // ^.^
            hello;
        }
        else if (.@darn > 26)
        {
            emotion 111; // Look away
            goodbye;
        }
        else
        {
            npctalk3 l("Stop it!");
        }

        return;
    }

    switch (rand(4))
    {
        case 0:
            darn_or_smile();
            break;
        case 1:
            npctalk3 l("It is a sunny day, don't you think?");
            break;
        case 2:
            npctalk3 l("Go fly a kite.");
            break;
        case 3:
            npctalk3 l("I just want to live my life in peace.");
            break;
        default:
            emotion 3;
            break;
    }

    return;
}