diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-08-17 16:57:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-08-17 16:57:02 -0300 |
commit | 781867503bf4d94717a2ad8787441d6cc28e5297 (patch) | |
tree | 9f16312bb6382bf4bb363247a6d4ff9210c5259a /npc/007-1 | |
parent | 0872b202513b03316c4d13c753b16ffa3eb38391 (diff) | |
download | serverdata-781867503bf4d94717a2ad8787441d6cc28e5297.tar.gz serverdata-781867503bf4d94717a2ad8787441d6cc28e5297.tar.bz2 serverdata-781867503bf4d94717a2ad8787441d6cc28e5297.tar.xz serverdata-781867503bf4d94717a2ad8787441d6cc28e5297.zip |
Miner Hat is a reagent for Paxel Quest, so drop it at Lava Slime and Giant Cave Maggot.
These presumably killed miners and looted their equipment!
Also, require Miner Gloves on Pickaxe Quest. Caelum can give, and Red Slime may drop.
Diffstat (limited to 'npc/007-1')
-rw-r--r-- | npc/007-1/tycoon.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/007-1/tycoon.txt b/npc/007-1/tycoon.txt index 8ed6721a1..d15332109 100644 --- a/npc/007-1/tycoon.txt +++ b/npc/007-1/tycoon.txt @@ -176,10 +176,10 @@ L_Miner: mesq l("Well, I'm the miner leader, indeed. A miner need to have the full set."); next; mesn; - mesq l("The uniform would be: @@, @@ and @@", getitemlink(LeatherShirt), getitemlink(MinerHat), getitemlink(Pickaxe)); + mesq l("The uniform would be: @@, @@, @@ and @@", getitemlink(LeatherShirt), getitemlink(MinerHat), getitemlink(MinerGloves), getitemlink(Pickaxe)); next; mesn; - mesq l("I can sell you the Pickaxe for @@ GP if you have and equip the remaining equipment.", .@price); + mesq l("I can sell you the Pickaxe for @@ GP if you have and @@ the remaining equipment.", .@price, b(l("equip"))); if (Zeny < .@price) close; @@ -191,6 +191,7 @@ L_Miner: if ( getequipid(EQI_HEAD_TOP) == MinerHat && getequipid(EQI_HEAD_MID) == LeatherShirt && + getequipid(EQI_GARMENT) == MinerGloves && Zeny >= .@price) { inventoryplace Pickaxe, 1; |