diff options
Diffstat (limited to 'npc/007-1/tycoon.txt')
-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; |