summaryrefslogtreecommitdiff
path: root/npc/008-2-32/thamas.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/008-2-32/thamas.txt')
-rw-r--r--npc/008-2-32/thamas.txt83
1 files changed, 83 insertions, 0 deletions
diff --git a/npc/008-2-32/thamas.txt b/npc/008-2-32/thamas.txt
new file mode 100644
index 00000000..2a338ef1
--- /dev/null
+++ b/npc/008-2-32/thamas.txt
@@ -0,0 +1,83 @@
+// 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("However, I can't wait to see animals, er, uncivilized people of these woodlands."),
+ l("Meh, I'm still with stomach ache due to that stew Morcant is used to cook. Like as I'm not enough nervous about the special mission I've been assigned to."),
+ //l("I bet he uses squirrels to make that damn stew. Bleah."),
+ 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? A special mission?"),
+ 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:
+ mesn;
+ mesq l("I can't tell you. Captain Hal is in charge so ask him if you really care.");
+ next;
+ mesq l("You can find him to the clifftop behind Morcant's house.");
+ if(!getq(General_CptHal)) setq(General_CptHal,1); // Start Captain Hal quest
+ break;
+ case 6:
+ mesn;
+ mesq l("Honestly? I don't know.");
+ next;
+ mesn;
+ mesq l("Stop making questions which make no sense...");
+ break;
+ }
+ close;
+
+OnInit:
+ .distance = 4;
+ end;
+}