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
|
// Evol scripts.
// Author:
// Micksha
// Description:
// Morcant the Captain, taking care on harbor issues.
// THIS IS A PLACEHOLDER!
008-1-1,58,57,0 script Morcant NPC_MORCANT,{
speech
l("Hello."),
l("My name is Morcant. I am a Captain, a bit bored since this harbor is not frequented much."),
l("I would like to offer you food and tell you stories, but.. have you ever heard of WildX? I won't need to say more, do I?");
next;
select
l("Not really but okay...?"),
l("Actually, I am after your Stew recipe!"),
l("Anything to do around these parts?"),
l("Can you tell me the directions again?");
mes "";
switch (@menu)
{
case 2:
mesn;
mesq l("Hohoho! That is a family's trade secret!");
if (!getq(General_SmearedHands)) {
next;
mesn;
mesq l("You don't even know how to cook. %s.. Ah, good old times.", any(
l("I've learned cooking with Yannika."),
l("I had tasty barbecue with Crane.")
));
}
break;
case 3:
mesn;
mesq l("Hmm, you might want to ask Galimatia, my neighbor.");
next;
mesn;
mesq l("She is always taking care of her bees, though.");
break;
case 4:
mesn;
mesq l("There should be a fair number of signposts around. Anyway.");
next;
mesn;
mesq l("Go east to reach Hurnscald. Just follow the road, really.");
next;
mesn;
mesq l("And do not go south. It is haunted.");
break;
}
close;
OnInit:
OnInstanceInit:
.bodytype = BODYTYPE_3;
.distance = 4;
.speed=120;
//.alwaysVisible=true;
end;
}
|