summaryrefslogtreecommitdiff
path: root/npc/008-3-1/arkim.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-09 11:00:49 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-09 11:00:49 -0300
commit8a4bf716002a017de77fe7df301ef8e4aaf00a2e (patch)
tree4947d0b015baad639fa07133369e9a09c8a468bc /npc/008-3-1/arkim.txt
downloadserverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.gz
serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.bz2
serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.xz
serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.zip
Initial commit
Diffstat (limited to 'npc/008-3-1/arkim.txt')
-rw-r--r--npc/008-3-1/arkim.txt56
1 files changed, 56 insertions, 0 deletions
diff --git a/npc/008-3-1/arkim.txt b/npc/008-3-1/arkim.txt
new file mode 100644
index 00000000..665725bf
--- /dev/null
+++ b/npc/008-3-1/arkim.txt
@@ -0,0 +1,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;
+
+}
+