summaryrefslogtreecommitdiff
path: root/npc/024-10
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-10-18 17:39:09 -0300
committerJesusaves <cpntb1@ymail.com>2021-10-18 17:39:09 -0300
commitf992808a952e42109ad5679059828b72a3f632e1 (patch)
treee3ca7d34c683b3c1754c3f82b51aab509295f238 /npc/024-10
parentcf07c8e9fe05d176c7b3dfbf66000958b37e76d5 (diff)
downloadserverdata-f992808a952e42109ad5679059828b72a3f632e1.tar.gz
serverdata-f992808a952e42109ad5679059828b72a3f632e1.tar.bz2
serverdata-f992808a952e42109ad5679059828b72a3f632e1.tar.xz
serverdata-f992808a952e42109ad5679059828b72a3f632e1.zip
The missing Frostia's Quests... Except for bounty hunter Eldrin
Diffstat (limited to 'npc/024-10')
-rw-r--r--npc/024-10/_import.txt1
-rw-r--r--npc/024-10/eldrin.txt30
2 files changed, 31 insertions, 0 deletions
diff --git a/npc/024-10/_import.txt b/npc/024-10/_import.txt
index 185060717..c1656f2b6 100644
--- a/npc/024-10/_import.txt
+++ b/npc/024-10/_import.txt
@@ -1,4 +1,5 @@
// Map 024-10: Frostia Indoors
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/024-10/_warps.txt",
+"npc/024-10/eldrin.txt",
"npc/024-10/haircut.txt",
diff --git a/npc/024-10/eldrin.txt b/npc/024-10/eldrin.txt
new file mode 100644
index 000000000..f03cea5a7
--- /dev/null
+++ b/npc/024-10/eldrin.txt
@@ -0,0 +1,30 @@
+// TMW2 scripts.
+// Authors:
+// Jesusalva
+// Description:
+// Questmaker Handbook 14.0 (F = Favorable)
+
+024-10,33,30,0 script Eldrin NPC_ELF,{
+ // FIXME: Bounty House
+ //.@q = getq(FrostiaQuest_Rydel);
+ if (BaseLevel < 30) {
+ mesc l("The elf seems busy. He ignores you.");
+ close;
+ }
+ mesn;
+ mesq l("Sorry, we're not yet open.");
+ close;
+
+OnInit:
+ .@npcId = getnpcid(.name$);
+ setunitdata(.@npcId, UDT_HEADBOTTOM, CottonTrousers);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, Chainmail);
+ setunitdata(.@npcId, UDT_HEADTOP, VikingHelmet);
+ setunitdata(.@npcId, UDT_HAIRSTYLE, 7);
+ setunitdata(.@npcId, UDT_HAIRCOLOR, 11);
+
+ .sex = G_MALE;
+ .distance = 5;
+ end;
+}
+