summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Miller <shadowmil@gmail.com>2010-08-24 17:03:41 -0400
committerJared Adams <jaxad0127@gmail.com>2010-08-24 15:27:31 -0600
commit3eced1bf67c6bd8337486d8e1766d514268f036f (patch)
treed099fa9c3ce1667ffa825ce25889b8ab3666ac5f
parent057ca83db82f1d1d60fba09ecabed9904ea0f58b (diff)
downloadserverdata-3eced1bf67c6bd8337486d8e1766d514268f036f.tar.gz
serverdata-3eced1bf67c6bd8337486d8e1766d514268f036f.tar.bz2
serverdata-3eced1bf67c6bd8337486d8e1766d514268f036f.tar.xz
serverdata-3eced1bf67c6bd8337486d8e1766d514268f036f.zip
Reduce cost of bat drops and add a daily NPC to pay players for bat drops
-rw-r--r--db/item_db.txt4
-rw-r--r--npc/011-3_Hermits_cave/hermit.txt51
2 files changed, 51 insertions, 4 deletions
diff --git a/db/item_db.txt b/db/item_db.txt
index 1c895454..bc4e2dfd 100644
--- a/db/item_db.txt
+++ b/db/item_db.txt
@@ -252,8 +252,8 @@
750, SlowPoisonPotion, Slow Poison Potion, 0, 500, 200, 10, , , , , , 2, , , 0, , { itemheal 5, 0; sc_start sc_slowpoison, 180000, 180; }, {}
751, PinkieHat, Pinkie Hat, 5, 5000, 1000, 5, , 1, , 1, 0, 2, 256, , 0, 0, {}, {}
752, FluffyHat, Fluffy Hat, 5, 7000, 2000, 10, , 2, , -5, 0, 2, 256, , 0, 0, {}, {}
-753, BatWing, Bat Wing, 3, 500, 50, 3, , , , , , , , , , , {}, {}
-754, BatTeeth, Bat Teeth, 3, 600, 75, 2, , , , , , , , , , , {}, {}
+753, BatWing, Bat Wing, 3, 500, 10, 3, , , , , , , , , , , {}, {}
+754, BatTeeth, Bat Teeth, 3, 600, 12, 2, , , , , , , , , , , {}, {}
755, AssassinShirt, Assassin Shirt, 5, 10000, 3000, 15, , 10, , -5, 0, 2, 512, , 0, 0, {}, { callfunc "UnreleasedItem"; bonus bAgi,10; }
756, AssassinGloves, Assassin Gloves, 5, 7000, 2000, 9, , 5, , -3, 0, 2, 4, , 0, 0, {}, { callfunc "UnreleasedItem"; bonus bAgi,5; }
757, AssassinBoots, Assassin Boots, 5, 7000, 2000, 10, , 5, , -3, 0, 2, 64, , 0, 0, {}, { callfunc "UnreleasedItem"; bonus bAgi,5; }
diff --git a/npc/011-3_Hermits_cave/hermit.txt b/npc/011-3_Hermits_cave/hermit.txt
index f732f83a..6dccccf4 100644
--- a/npc/011-3_Hermits_cave/hermit.txt
+++ b/npc/011-3_Hermits_cave/hermit.txt
@@ -3,13 +3,60 @@
011-3.gat,30,30,0 script Arkim 116,{
mes "[Arkim the Hermit]";
mes "\"Do you want to go back outside?\"";
- next;
menu
"Yes please", L_Sure,
- "Not yet", -;
+ "Not yet", -,
+ "Actually... Why do you live here?", L_Interested;
close;
L_Sure:
warp "011-1.gat", 60, 95;
close;
+
+L_Interested:
+ mes "[Arkim the Hermit]";
+ mes "\"Oh my, never really thought about it\"";
+ next;
+ mes "[Arkim the Hermit]";
+ mes "\"I guess mostly I enjoy experimenting with bats here\"";
+
+ menu
+ "I see", -,
+ "What type of experimenting?", L_Experiment;
+ close;
+
+L_Experiment:
+ mes "[Arkim the Hermit]";
+ mes "\"Never really thought about it...\"";
+
+ next;
+
+ mes "*You watch as his old, lazy eyes open wide. And the old man comes alive with engery*";
+
+ next;
+
+ mes "[Arkim the Hermit]";
+ mes "\"I GUESS I REALLY LIKE CUTTING THEM UP TO SEE HOW THEY WORK!! HAHAHA!\"";
+
+ menu
+ "YOU'RE CRAZY!", -,
+ "Right... me too. Can I help?", L_Quest;
+ close;
+
+L_Quest:
+ set @dq_level, 20;
+ set @dq_cost, 4;
+ set @dq_count, 3;
+ set @dq_name$, "BatWing";
+ set @dq_friendly_name$, "bat wings";
+ set @dq_money, 600;
+ set @dq_exp, 100;
+
+ callfunc "DailyQuest";
+
+ next;
+
+ mes "[Arkim the Hermit]";
+ mes "\"And remember never lend your tooth brush to a slime!\"";
+ close;
}