summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMass <Mass@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-07 08:52:55 +0000
committerMass <Mass@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-07 08:52:55 +0000
commitdf4acc64d0b550a5e5201de3ceae7f4c4e210670 (patch)
treebd7c9313654bf0e898757656616b5fd02825d544
parentee93ce7a37a5ea542ecc5ec32bc8a9499b75a739 (diff)
downloadhercules-df4acc64d0b550a5e5201de3ceae7f4c4e210670.tar.gz
hercules-df4acc64d0b550a5e5201de3ceae7f4c4e210670.tar.bz2
hercules-df4acc64d0b550a5e5201de3ceae7f4c4e210670.tar.xz
hercules-df4acc64d0b550a5e5201de3ceae7f4c4e210670.zip
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@486 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--conf-tmpl/map_athena.conf1
-rw-r--r--npc/Changelog.txt2
-rw-r--r--npc/quests/newgears/fox_mask.txt55
3 files changed, 58 insertions, 0 deletions
diff --git a/conf-tmpl/map_athena.conf b/conf-tmpl/map_athena.conf
index 6793ce6e2..ed09d6dce 100644
--- a/conf-tmpl/map_athena.conf
+++ b/conf-tmpl/map_athena.conf
@@ -219,6 +219,7 @@ npc: npc/quests/newgears/back_ribbon.txt
npc: npc/quests/newgears/bear_hat.txt
npc: npc/quests/newgears/burning_blood_bandana.txt
npc: npc/quests/newgears/cat_hairband.txt
+npc: npc/quests/newgears/fox_mask.txt
npc: npc/quests/newgears/hat_seller.txt
npc: npc/quests/newgears/indian_headband.txt
npc: npc/quests/newgears/mask_of_alarm.txt
diff --git a/npc/Changelog.txt b/npc/Changelog.txt
index 0cd9ecc5d..afde897ce 100644
--- a/npc/Changelog.txt
+++ b/npc/Changelog.txt
@@ -30,6 +30,8 @@ Other Ppl
Date Added
======
+12/07 * Added Fox Mask quest. [Mass Zero]
+
12/06 * Added seperate quests for the new headgears, missing Fox Mask and Orc Hero Helm. (I'll so 'em ASAP.) [Mass Zero]
11/30 * Added Lutie shops
diff --git a/npc/quests/newgears/fox_mask.txt b/npc/quests/newgears/fox_mask.txt
new file mode 100644
index 000000000..f39bfd177
--- /dev/null
+++ b/npc/quests/newgears/fox_mask.txt
@@ -0,0 +1,55 @@
+//===== eAthena Script =======================================
+//= Fox Mask Quest
+//===== By: ==================================================
+//= KitsuneStarWind (1.0)
+//= Mass Zero (1.1)
+//===== Current Version: =====================================
+//= 1.1
+//===== Compatible With: =====================================
+//= Any eAthena version.
+//===== Description: =========================================
+// Seperate quest for the Fox Mask.
+//===== Additional Comments: =================================
+//
+//============================================================
+
+pay_dun04.gat,204,152,2 script Nine Tail 1180,{
+ mes "[Nine Tail]";
+ mes "What do you want?";
+ next;
+ mes "[Nine Tail]";
+ mes "Have you come here for a ^FF3300 Fox Mask^000000?";
+ next;
+ menu "Yeah, Sure.",L_1,"No",L_2;
+L_1:
+ mes "[Nine Tail]";
+ mes "Fine then. If I make one for you, will you go away?";
+ mes "You realize that it requires 999 Nine Tails to make, do you?";
+ menu "Sure.",L_1_1,"Nah.",L_1_2;
+L_1_1:
+ mes "[Nine Tail]";
+ mes "Ok then, I shall make one for you.";
+ next;
+ goto L_1_SUB;
+L_1_2:
+ mes "[Nine Tail]";
+ mes "Grrrr... I'll make one anyway but I hope my master gets you.";
+ next;
+L_1_SUB:
+ if (countitem(1022) < 999) goto L_1_SUB2;
+ delitem 1022,999;
+ getitem 5069,1;
+ next;
+ mes "[Nine Tails]";
+ mes "Have fun.";
+ close;
+L_1_SUB2:
+ mes "[Nine Tail]";
+ mes "You do not have have enough Nine Tails.";
+ mes "You need 999 of them.";
+ close;
+L_2:
+ mes "[Nine Tail]";
+ mes "Then leave me alone... for I am waiting for my master.";
+ close;
+} \ No newline at end of file