summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/quest_db.conf4
-rw-r--r--npc/003-1/eomie.txt14
-rw-r--r--npc/003-1/tinris.txt3
-rw-r--r--npc/004-1/_import.txt1
-rw-r--r--npc/004-1/anwar.txt12
5 files changed, 29 insertions, 5 deletions
diff --git a/db/quest_db.conf b/db/quest_db.conf
index d5780e1d0..22248ecd2 100644
--- a/db/quest_db.conf
+++ b/db/quest_db.conf
@@ -180,6 +180,10 @@ quest_db: (
Id: 60
Name: "TulimsharQuest_DarkInvocator"
},
+{
+ Id: 61
+ Name: "TulimsharQuest_AnwarField"
+},
// ID 71 to 90: Halinarzo Quests
{
diff --git a/npc/003-1/eomie.txt b/npc/003-1/eomie.txt
index 57a355248..e338bbae3 100644
--- a/npc/003-1/eomie.txt
+++ b/npc/003-1/eomie.txt
@@ -1,5 +1,9 @@
+// TMW2 Script
// Author:
// Saulc
+// Jesusalva
+// Description:
+// Part of Anwar Field quest
// Notes: Eomie did the bug bomb at Candor
003-1,68,24,0 script Eomie NPC_ELF_F,{
@@ -7,11 +11,11 @@
hello;
OnInit:
- .@npcId = getnpcid(0, "Eomie");
- //setunitdata(.@npcId, UDT_HEADTOP, 2929);
- setunitdata(.@npcId, UDT_HEADMIDDLE, 1319);
- setunitdata(.@npcId, UDT_HEADBOTTOM, 2207);
- //setunitdata(.@npcId, UDT_WEAPON, 1802); // Boots
+ .@npcId = getnpcid(0, .name$);
+ //setunitdata(.@npcId, UDT_HEADTOP, PinkieHat);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, ValentineDress);
+ setunitdata(.@npcId, UDT_HEADBOTTOM, CottonTrousers);
+ //setunitdata(.@npcId, UDT_WEAPON, DeepBlackBoots); // Boots
setunitdata(.@npcId, UDT_HAIRSTYLE, 10);
setunitdata(.@npcId, UDT_HAIRCOLOR, 12);
diff --git a/npc/003-1/tinris.txt b/npc/003-1/tinris.txt
index a96566818..012ec6518 100644
--- a/npc/003-1/tinris.txt
+++ b/npc/003-1/tinris.txt
@@ -1,6 +1,9 @@
// TMW2 Script
// Author:
// Saulc
+// Jesusalva
+// Description:
+// Part of Anwar Field quest
003-1,66,30,0 script Tinris NPC_ELF,{
diff --git a/npc/004-1/_import.txt b/npc/004-1/_import.txt
index d8897b37d..a98e3d86b 100644
--- a/npc/004-1/_import.txt
+++ b/npc/004-1/_import.txt
@@ -2,4 +2,5 @@
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/004-1/_mobs.txt",
"npc/004-1/_warps.txt",
+"npc/004-1/anwar.txt",
"npc/004-1/elanore.txt",
diff --git a/npc/004-1/anwar.txt b/npc/004-1/anwar.txt
new file mode 100644
index 000000000..265ee94c5
--- /dev/null
+++ b/npc/004-1/anwar.txt
@@ -0,0 +1,12 @@
+// TMW2 Script
+// Author:
+// TMW Org.
+// Jesusalva
+// Description:
+// Part of Anwar Field quest
+
+004-1,107,67,0 script Anwar NPC_PLAYER,{
+ .@q=getq(TulimsharQuest_AnwarField);
+ hello;
+ end;
+}