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

function	script	sailortalk	{

    .@rand = rand(8);
    if (.@rand == 0) goodbye;
    if (.@rand == 1) npctalkonce(l("Ah, this is boring."));
    if (.@rand == 2) npctalkonce(l("Good to hear from you!"));
    if (.@rand == 3) npctalkonce(l("So finally someone has came to visit me?"));
    if (.@rand == 4)
    {
        speech(
            l("A sunny and hot day,"),
            l("a quiet place,"),
            l("a ground!"),
            l("What else do you need?"));
        close;
    }
    if (.@rand == 5) npctalkonce(l("A-hoy matey!"));
    if (.@rand == 6) npctalkonce(l("Arr!"));
    if (.@rand == 7) npctalkonce(l("Howdy?"));

    // just to be sure
    closedialog;
    close;
    end;
}