summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Miller <shadowmil@gmail.com>2009-06-19 02:50:40 -0400
committerDennis Friis <peavey@inspircd.org>2009-06-19 09:42:38 +0200
commit8bcd47cd5453ea1b5836f8e520bd79f012e072e3 (patch)
treeb368a11023be151c73151c52127a900e0aebba5f
parentcaaee95946874cedae8cd76be6406323a85c893a (diff)
downloadserverdata-8bcd47cd5453ea1b5836f8e520bd79f012e072e3.tar.gz
serverdata-8bcd47cd5453ea1b5836f8e520bd79f012e072e3.tar.bz2
serverdata-8bcd47cd5453ea1b5836f8e520bd79f012e072e3.tar.xz
serverdata-8bcd47cd5453ea1b5836f8e520bd79f012e072e3.zip
Make doug require 20 lamps (down from 40), and improve the reward
-rw-r--r--npc/010-2_Dimonds_Cove/doug.txt22
1 files changed, 13 insertions, 9 deletions
diff --git a/npc/010-2_Dimonds_Cove/doug.txt b/npc/010-2_Dimonds_Cove/doug.txt
index 366a642a..1c3d1162 100644
--- a/npc/010-2_Dimonds_Cove/doug.txt
+++ b/npc/010-2_Dimonds_Cove/doug.txt
@@ -11,12 +11,12 @@
L_0:
mes "[Doug]";
- mes "\"I need 40 more [Cave Snake Lamp]s to make my light!\"";
+ mes "\"I need 20 more [Cave Snake Lamp]s to make my light!\"";
next;
goto L_Question;
L_1:
mes "[Doug]";
- mes "\"This lamp should light up this whole place! I just need [40 Cave Snake Lamp]s.\"";
+ mes "\"This lamp should light up this whole place! I just need 20 [Cave Snake Lamp]s.\"";
next;
goto L_Question;
L_2:
@@ -26,13 +26,13 @@ L_2:
L_3:
mes "[Doug]";
- mes "\"Can you get me 40 [Cave Snake Lamp]s? I need them to get this light finished.\"";
+ mes "\"Can you get me 20 [Cave Snake Lamp]s? I need them to get this light finished.\"";
next;
goto L_Question;
L_Question:
mes "[Doug]";
- mes "\"Will you help me find 40 [Cave Snake Lamp]s?\"";
+ mes "\"Will you help me find 20 [Cave Snake Lamp]s?\"";
next;
menu
"Yes", L_Sure,
@@ -73,26 +73,30 @@ J_3:
L_Go:
mes "[Doug]";
- mes "\"Now please go get me 40 [Cave Snake Lamp]s.\"";
+ mes "\"Now please go get me 20 [Cave Snake Lamp]s.\"";
close;
L_State2:
- if(countitem("CaveSnakeLamp") >= 40) goto L_Have;
+ if(countitem("CaveSnakeLamp") >= 20) goto L_Have;
mes "[Doug]";
- mes "\"Please help me collect 40 [Cave Snake Lamp]s!\"";
+ mes "\"Please help me collect 20 [Cave Snake Lamp]s!\"";
close;
L_Have:
- delitem "CaveSnakeLamp", 40;
+ delitem "CaveSnakeLamp", 20;
mes "[Doug]";
mes "\"Cool! Now I can make this light!\"";
next;
mes "[Doug]";
mes "\"Here's what I got to give you!\"";
+ mes "";
+ mes "[5000 experience points]";
+ mes "[5000 gold]";
next;
- set zeny, zeny + 2000;
+ set zeny, zeny + 5000;
+ getexp 5000, 0;
set CaveSnakeLamp, 2;
close;