diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-16 13:15:20 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-16 13:15:20 -0300 |
commit | c12fc7953e21a7b8adf9a6972999650afa2734fc (patch) | |
tree | fccf42befbe03fac3d5615ff0ee9a9086f5ca94d | |
parent | 3c834d6fb2ea53dd1b315f63fc8d9d49bef74feb (diff) | |
download | serverdata-c12fc7953e21a7b8adf9a6972999650afa2734fc.tar.gz serverdata-c12fc7953e21a7b8adf9a6972999650afa2734fc.tar.bz2 serverdata-c12fc7953e21a7b8adf9a6972999650afa2734fc.tar.xz serverdata-c12fc7953e21a7b8adf9a6972999650afa2734fc.zip |
What, this fixes TYPOS?! Unbelievable!
-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: |