diff options
Diffstat (limited to 'npc/007-1')
-rw-r--r-- | npc/007-1/dracoula.txt | 2 | ||||
-rw-r--r-- | npc/007-1/tycoon.txt | 4 | ||||
-rw-r--r-- | npc/007-1/zarkor.txt | 2 |
3 files changed, 5 insertions, 3 deletions
diff --git a/npc/007-1/dracoula.txt b/npc/007-1/dracoula.txt index 5fa66401c..323fd7887 100644 --- a/npc/007-1/dracoula.txt +++ b/npc/007-1/dracoula.txt @@ -36,7 +36,7 @@ L_Quest: mesq l("Nice! First let me introduce myself. I am Dracoula, a miner!"); next; mesn; - mesq l("I mine here since a while. My favorite activity it's to scare others miners!"); + mesq l("I mine here since a while. My favorite activity is to scare other miners!"); next; } if (.@q == 0) goto L_Continue; diff --git a/npc/007-1/tycoon.txt b/npc/007-1/tycoon.txt index 026b54143..f5a3249fd 100644 --- a/npc/007-1/tycoon.txt +++ b/npc/007-1/tycoon.txt @@ -195,6 +195,7 @@ L_Miner: next; mesn; mesq l("The uniform would be: @@, @@, @@ and @@", getitemlink(LeatherShirt), getitemlink(MinerHat), getitemlink(MinerGloves), getitemlink(Pickaxe)); + mesc l("But you can also wear a %s instead, no problem.", getitemlink(MinerTankTop)); next; mesn; mesq l("I can sell you the Pickaxe for @@ GP if you have and @@ the remaining equipment.", .@price, b(l("equip"))); @@ -208,7 +209,8 @@ L_Miner: // If you're in proper uniform, DO NOT ASK FOR CONFIRMATION if ( getequipid(EQI_HEAD_TOP) == MinerHat && - getequipid(EQI_HEAD_MID) == LeatherShirt && + (getequipid(EQI_HEAD_MID) == LeatherShirt || + getequipid(EQI_HEAD_MID) == MinerTankTop) && getequipid(EQI_GARMENT) == MinerGloves && Zeny >= .@price) { diff --git a/npc/007-1/zarkor.txt b/npc/007-1/zarkor.txt index 2b2ac3b2e..2eba3685b 100644 --- a/npc/007-1/zarkor.txt +++ b/npc/007-1/zarkor.txt @@ -57,7 +57,7 @@ L_Weak: mesn; - mesq lg("Stay out of harm way. Nothing to see here. Stay away, pathetically weak human."); + mesq l("Stay out of harm way. Nothing to see here. Stay away, pathetically weak %s.", get_race()); close; L_Start: |