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
76
|
// Evol scripts.
// Author:
// Micksha
// Description:
// Thamas the soldier.
// THIS IS A PLACEHOLDER!
008-2-32,36,31,0 script Thamas NPC_THAMAS,{
speech
l("Hi there."),
l("I am a legion soldier who never talks much, until Jesusalva or WildX puts words in my mouth."),
l("Until then, let me be quiet. Talk to you later.");
next;
select
l("Okay, sorry for disturbing."),
l("But you said you remember me!"),
l("What do you think about this stew?"),
l("Where are you from, though? You have an odd... behavior."),
l("What is a legion soldier even doing here?"),
l("Who are Jesusalva and WildX?");
mes "";
switch (@menu)
{
case 2:
mesn;
mesq l("And I do. We were on the same ship a few times.");
next;
mesn;
mesq l("You stood out and I stayed on my corner. That's all.");
next;
mesn;
mesq l("Stop making questions which make no sense...");
break;
case 3:
mesn;
mesq l("Eh? It is okay, I guess.");
next;
mesn;
mesq l("I hear if you get a recipe book, you could cook things yourself.");
next;
mesn;
mesq l("Maybe someone in Hurnscald makes these books. I don't really care.");
next;
mesn;
mesq l("Stop making questions which make no sense...");
break;
case 4:
mesn;
mesq l("I'm from Esperia.");
next;
mesn;
mesq l("It would be tiring to describe the wonders of my hometown.");
next;
mesn;
mesq l("Why don't you look an article about it on this [%s|tour guide%s], instead?", "@@https://wiki.themanaworld.org/index.php/Esperia", "@@");
next;
mesn;
mesq l("Stop making questions which make no sense...");
break;
case 5:
case 6:
mesn;
mesq l("Honestly? I don't know.");
next;
mesn;
mesq l("Stop making questions which make no sense...");
break;
}
close;
OnInit:
.bodytype = BODYTYPE_3;
.distance = 4;
end;
}
|