diff options
Diffstat (limited to 'npc')
-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); |