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 | |
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.
-rw-r--r-- | db/re/mob_db.conf | 2 | ||||
-rw-r--r-- | npc/007-1/tycoon.txt | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index 29c06bcb4..f1ad7de2f 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -3873,6 +3873,7 @@ mob_db: ( CasinoCoins: 444 IronOre: 300 CasinoCoins: 222 + MinerHat: 18 LavaManaPearl: 1 } WeaponAttacks: { @@ -7609,6 +7610,7 @@ mob_db: ( Coal: 3000 IronOre: 1000 Ruby: 100 + MinerHat: 12 } }, // ok 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; |