summaryrefslogtreecommitdiff
path: root/npc/007-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-15 21:16:23 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-15 21:16:23 -0300
commitd219a873543c28856d57e75ef78ae7544890b2a2 (patch)
treeb703fa0b0091cd491d4c670771a7fe065f672f13 /npc/007-1
parent841dfd80d8b1be9f27cdbc4598ffdb2d1d835a3b (diff)
downloadserverdata-d219a873543c28856d57e75ef78ae7544890b2a2.tar.gz
serverdata-d219a873543c28856d57e75ef78ae7544890b2a2.tar.bz2
serverdata-d219a873543c28856d57e75ef78ae7544890b2a2.tar.xz
serverdata-d219a873543c28856d57e75ef78ae7544890b2a2.zip
Minor fixes, and raise Miner Gloves base level to 30 -- according to Total Visu
Diffstat (limited to 'npc/007-1')
-rw-r--r--npc/007-1/skydg.txt24
1 files changed, 12 insertions, 12 deletions
diff --git a/npc/007-1/skydg.txt b/npc/007-1/skydg.txt
index 7f590ba3c..36b98583a 100644
--- a/npc/007-1/skydg.txt
+++ b/npc/007-1/skydg.txt
@@ -8,7 +8,7 @@
007-1,165,144,0 script Miner#SkyDG NPC_PLAYER,{
.@Miner = getq(MineQuests_Miner);
- if (BaseLevel < 20) goto L_TooWeak;
+ if (BaseLevel < 25) goto L_TooWeak;
if (.@Miner == 1) goto L_Check;
if (.@Miner == 2) goto L_Complete;
@@ -57,7 +57,7 @@ L_Lista:
mes " * 15 " + getitemlink(BatWing);
mes " * 10 " + getitemlink(BatTeeth);
mes " * 10 " + getitemlink(CactusDrink);
- mes " * 02 " + getitemlink(IronOre); // Reviewer Notes: Perhaps, "Scorpion Claw" would be better?
+ mes " * 03 " + getitemlink(ScorpionClaw);
close;
L_Check:
@@ -71,24 +71,24 @@ L_Check:
L_Give:
if (
- countitem(MaggotSlime) < 25 ||
- countitem(BugLeg) < 20 ||
- countitem(RedScorpionStinger) < 8 ||
- countitem(BatWing) < 15 ||
- countitem(BatTeeth) < 10 ||
- countitem(CactusDrink) < 10)
- countitem(IronOre) < 3)
- ) goto L_Lying;
+ countitem(MaggotSlime) < 25 ||
+ countitem(BugLeg) < 20 ||
+ countitem(RedScorpionStinger) < 8 ||
+ countitem(BatWing) < 15 ||
+ countitem(BatTeeth) < 10 ||
+ countitem(CactusDrink) < 10 ||
+ countitem(ScorpionClaw) < 3
+ ) goto L_Lying;
inventoryplace MinerGloves, 1;
delitem(MaggotSlime, 25);
- delitem(BugLeg , 20);
+ delitem(BugLeg, 20);
delitem(RedScorpionStinger, 8);
delitem(BatWing, 15);
delitem(BatTeeth, 10);
delitem(CactusDrink, 10);
- delitem(IronOre, 3);
+ delitem(ScorpionClaw, 3);
getitem(MinerGloves, 1);
getexp(150, 0);