summaryrefslogtreecommitdiff
path: root/world/map/npc/018-2/receptionist.txt
blob: 2efd73c7d2ec9739795d705e6d7c2806a57104fd (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
66
67
68
69
70
71
72
73
74
75
//

018-2,50,24,0|script|Receptionist#mine|108
{
    set @inspector, ((QUEST_Hurnscald & NIBBLE_3_MASK) >> NIBBLE_3_SHIFT);

    mes "[Receptionist]";
    mes "\"Welcome to the mining camp!";
    mes "Mining operations are currently suspended.";
    mes "Do you need anything?\"";
    next;
    goto L_Menu;

L_Menu:
    if (@inspector == 10)
        menu
            "Why was a mine setup here?", L_Mine,
            "Can I go into the mine?", L_Enter,
            "Did the company build this building?", L_Building,
            "Did you hear a commotion here the other night?", L_NohMask,
            "Thank you, no.", L_Close;
    menu
        "Why was a mine setup here?", L_Mine,
        "Can I go into the mine?", L_Enter,
        "Did the company build this building?", L_Building,
        "Thank you, no.", L_Close;

L_Mine:
    mes "[Receptionist]";
    mes "\"Minerals have been easy to find in this area historically. The mine entrance we're using collapsed from the mountain side when the volcano errupted. Plenty of minerals were exposed then.\"";
    next;
    mes "[Receptionist]";
    mes "\"Unfortunately, some miners dug into a monster nest and not everyone made back unharmed. Since then, operations have been officially suspended, which increases the ore price as Tulimshar's mines becomes the only viable source of minerals.\"";
    next;
    mes "[Receptionist]";
    mes "\"Well, with the increased ore prices, there are still some people who go inside trying to get rich quick. The insurance company however will not cover for accidents with monsters.\"";
    next;
    goto L_Question_End;

L_Enter:
    mes "[Receptionist]";
    mes "\"If you think you can handle all the monsters that have appeared there.\"";
    next;
    goto L_Question_End;

L_Building:
    mes "[Receptionist]";
    mes "\"No, the company bought this building. It's been abandoned for a while. The villagers think it's haunted, but we haven't seen anything, except for the basement. None of us have been able to stay there for very long.\"";
    next;
    menu
        "Why not?", L_Next,
        "Not my problem", L_Question_End;

L_Next:
    mes "[Receptionist]";
    mes "\"I haven't been down there myself, and the ones who have haven't been able to describe why at all.\"";
    next;
    goto L_Question_End;

L_NohMask:
    mes "[Receptionist]";
    mes "\"I stay in town, and so couldn't have heard anything over here. One of the miners might be able to help you.\"";
    next;
    goto L_Question_End;

L_Question_End:
    mes "[Receptionist]";
    mes "\"Do you need anything else?\"";
    next;
    goto L_Menu;

L_Close:
    set @inspector, 0;
    close;
}