From 5d3b85ae54eec8d9341bfb91e0022f777dea04fe Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 15 Mar 2019 11:49:45 -0300 Subject: Minor balance --- npc/017-1/boringnpc.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'npc') diff --git a/npc/017-1/boringnpc.txt b/npc/017-1/boringnpc.txt index 5ca4f5359..7bc57ec79 100644 --- a/npc/017-1/boringnpc.txt +++ b/npc/017-1/boringnpc.txt @@ -6,7 +6,7 @@ // Permanently repeatable quest, without any special limit 017-1,123,58,0 script Boring NPC NPC_RUMLY,{ - .@price=30; + .@price=35; mesn; mesq l("Hwellow. I am a boring NPC which makes green dye."); // Typo on purpose: Uwhaaaaah (as in waking up) + hello next; @@ -14,14 +14,14 @@ mesq l("Hwaaaah... Man, I'm bored. Will you be getting @@?", getitemlink(GreenDye)); if ($EVENT$ == "St. Patrick") { mesc l("It's St. Patrick Day, so be warned everyone wants a green dye... So, I raise the prices."); - .@price*=3; + .@price*=2; } next; mesn; mes l("For you, boring person like me, It'll cost the small amount of:"); mes l("* @@/@@ @@", countitem(CobaltHerb), .@price+10, getitemlink(CobaltHerb)); mes l("* @@/@@ @@", countitem(GambogeHerb), .@price+10, getitemlink(GambogeHerb)); - mes l("* @@/@@ @@", countitem(BugLeg), .@price, getitemlink(BugLeg)); + mes l("* @@/@@ @@", countitem(BugLeg), .@price-10, getitemlink(BugLeg)); mes l("@@/@@ GP", format_number(Zeny), format_number(.@price*2)); next; select @@ -36,16 +36,17 @@ if ( countitem(CobaltHerb) < .@price+10 || countitem(GambogeHerb) < .@price+10 || - countitem(BugLeg) < .@price || + countitem(BugLeg) < .@price-10 || Zeny < .@price*2 ) goto L_NotEnough; inventoryplace GreenDye, 1; delitem CobaltHerb, .@price+10; delitem GambogeHerb, .@price+10; - delitem BugLeg, .@price; + delitem BugLeg, .@price-10; Zeny-=.@price*2; getitem GreenDye, 1; + getexp 200, 100; // Job Experience >>> Base Experience mesn; mesq l("There you go, boring person... You will look like the trees here. Ugh, disgusting."); close; -- cgit v1.2.3-60-g2f50