summaryrefslogtreecommitdiff
path: root/npc/008-3-1/arkim.txt
blob: 665725bf7596347f782bab92222ec190fa9a9986 (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
// The Mana World scripts.
// Author:
//  Jesusalva
// Description:
//	Arkim the mad hermit and Mirak's brother

008-3-1,41,34,0	script	Arkim	NPC_TERRY,{
    function arkimDaily;
    mesn;
    mesq l("Do you want help me with bats?");
    next;
    select
        l("Yes, please!"),
        l("Bats? Actually... Why do you live here?"); // Who said they live here?
    mes "";
    if (@menu == 1)
        arkimDaily();
    mesn;
    mesq l("Oh my, never really thought about it!");
    next;
    mesn;
    mesq l("I guess mostly I enjoy experimenting with the bats here.");
    next;
    select
        l("I see... Ehm... I have to go..."),
        l("What type of experimenting?");
    mes "";
    if (@menu == 1)
        close;
    mesn;
    mesq l("Never really thought about it either...");
    next;
    mesn;
    mesc l("You watch as the hermit's old, lazy eyes open wide, and the old man comes alive with energy.");
    mesq l("I GUESS I REALLY LIKE CUTTING THEM UP TO SEE HOW THEY WORK!!  HAHAHA!");
    next;
    select
        l("YOU'RE CRAZY!"),
        l("Right... me too! Can I help?");
    mes "";
    if (@menu == 2)
        arkimDaily();
    close;

function arkimDaily {
    // DailyQuest(lvl, cost, count, item)
    DailyQuest(20, 4, 3, BatWing);
    close;
}

OnInit:
	.distance = 4;
	end;

}