summaryrefslogtreecommitdiff
path: root/npc/functions/moubootalk.txt
blob: 0d6fb53907b1133c9b3e63319e2d64dc8d5ccdc5 (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
// Evol functions.
// Author:
//    Reid
// Description:
//    Tell a random sentence.
// Variables:
//    .@rand = Random number between the number of sentence choice.

function	script	moubootalk	{
    switch (rand (4))
    {
        case 0:
            npctalk3 l("Moooooo!");
            break;
        case 1:
            npctalk3 l("Moo!");
            break;
        case 2:
            npctalk3 l("Moooooooooooo!");
            break;
        case 3:
            npctalk3 l("Moooo!");
            break;
    }
    return;
}