summaryrefslogtreecommitdiff
path: root/npc/017-1/inspector.txt
blob: 0fadaf6528be5ac36a85d94f31d73711ad9fd05e (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
// TMW2/LOF Script.
// Author:
//    Jesusalva
// Description:
//  Part of Katze quest
// See also
//  npc/config/inspector.txt

017-1,77,104,0	script	Anselmo	NPC_ANSELMO_BR,{
    .@q = getq(LoFQuest_Inspector);
    mesn;
    mesq l("Hello. My name is Anselmo and I'm investigating a recent string of robberies.");
    next;
    if (BaseLevel < 50) goto L_Close;
    if (!is_staff()) goto L_Close; // FIXME
    mesn;
    mesq l("Well... Not robberies per se... Just cheese vanishing and being replaced by %s, which is super weird.", getitemlink(GoldenApple));
    next;
    mesn;
    mesq l("You look capable, will you help me solve these robberies? Of course, not for free.");
    next;
    if (askyesno() == ASK_NO)
        goto L_Close;
    mesn;
    mesq l("Excellent. I'd like you to ask around about the recent string of robberies.");
    next;
    mesn;
    mesq l("I'll just... put this tiny coat of arms on you. This will let everyone know you are acting on an official capacity.");
    next;
    mesn;
    mesq l("But remember, they're stealing %s, not shinies, so try to limit your search a bit.", getitemlink(Cheese));
    // Excluded: Doctor, Boring NPC, Nowhere family, Drowned Man
    // Billy, Drueme, Stranger, Fortiun, Fusus, Nahrec, Silversmith
    setq LoFQuest_Inspector, 1, 0;
    next;
    goto L_Close;

L_Close:
    closeclientdialog;
    if (rand2(100) < 2)
        npctalk3 l("And remember to never sit on Paxel! He hates that!");
    else
        goodbye();
    close;

OnInit:
    .distance=5;
    .sex = G_MALE;
    end;
}