diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-24 20:04:05 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-24 20:04:05 -0300 |
commit | 56b80b9351dec2d3404349a97e011a60c4e776c9 (patch) | |
tree | 39c64ed0027ec327d8d9b6d24fc7c0b26101cf26 | |
parent | 25ef7667aa0d41485047a06fa660547562fa63cd (diff) | |
download | serverdata-56b80b9351dec2d3404349a97e011a60c4e776c9.tar.gz serverdata-56b80b9351dec2d3404349a97e011a60c4e776c9.tar.bz2 serverdata-56b80b9351dec2d3404349a97e011a60c4e776c9.tar.xz serverdata-56b80b9351dec2d3404349a97e011a60c4e776c9.zip |
Minor rebalance
-rw-r--r-- | npc/009-1/trader_king.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/009-1/trader_king.txt b/npc/009-1/trader_king.txt index 8d6828239..2ae85de71 100644 --- a/npc/009-1/trader_king.txt +++ b/npc/009-1/trader_king.txt @@ -93,7 +93,7 @@ L_Accept: mesn; mes l("Here's what I need:"); mes l("@@/30 @@", countitem(CoinBag), getitemlink(CoinBag)); - mes l("@@/2 @@", countitem(EmptyBottle), getitemlink(EmptyBottle)); + mes l("@@/5 @@", countitem(EmptyBottle), getitemlink(EmptyBottle)); mes l("@@/2 @@", countitem(Dagger), getitemlink(Dagger)); mes l("@@/1 @@", countitem(LeatherShield), getitemlink(LeatherShield)); mes l("@@/6000 GP", Zeny); @@ -119,7 +119,7 @@ L_Wait: L_Finish: if (Zeny < 6000) goto L_Poor; if (countitem(CoinBag) < 30 || - countitem(EmptyBottle) < 2 || + countitem(EmptyBottle) < 5 || countitem(Dagger) < 2 || countitem(LeatherShield) < 1) goto L_Missing; @@ -167,7 +167,7 @@ L_Review: mesn; mes l("Here's what I need:"); mes l("@@/30 @@", countitem(CoinBag), getitemlink(CoinBag)); - mes l("@@/2 @@", countitem(EmptyBottle), getitemlink(EmptyBottle)); + mes l("@@/5 @@", countitem(EmptyBottle), getitemlink(EmptyBottle)); mes l("@@/2 @@", countitem(Dagger), getitemlink(Dagger)); mes l("@@/1 @@", countitem(LeatherShield), getitemlink(LeatherShield)); mes l("@@/6000 GP", Zeny); |