diff options
-rw-r--r-- | npc/016-1/laranja.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/016-1/laranja.txt b/npc/016-1/laranja.txt index f293fb370..0693d432f 100644 --- a/npc/016-1/laranja.txt +++ b/npc/016-1/laranja.txt @@ -17,7 +17,7 @@ mesq l("How can I help you?"); mes ""; menu - l("Orange Dye? How much does it cost?"), -, + l("Orange Dye? How much does it cost?"), L_Dye, l("Nothing. Take care!"), L_Quit; L_Dye: @@ -52,16 +52,16 @@ L_Dye: goto L_Quit; if (countitem(BottleOfTonoriWater) >= 1 && countitem(GambogeHerb) >= 60 && - countitem(AlizarinHerb) >= 75 && + countitem(AlizarinHerb) >= 70 && countitem(Piberries) >= 5 && - countitem(PileOfAsh) >= 5 && Zeny >= 1500) { + countitem(PileOfAsh) >= 5 && Zeny >= 3000) { inventoryplace OrangeDye, 1, EmptyBottle, 1; delitem BottleOfTonoriWater, 1; delitem GambogeHerb,60; delitem AlizarinHerb, 70; delitem Piberries, 5; delitem PileOfAsh, 5; - Zeny=Zeny-1500; + Zeny -= 3000; getitem OrangeDye, 1; getitem EmptyBottle, 1; if (getq(TulimsharQuest_Laranja) == 1) { |