summaryrefslogtreecommitdiff
path: root/npc/017-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-03-15 11:49:45 -0300
committerJesusaves <cpntb1@ymail.com>2019-03-15 11:49:45 -0300
commit5d3b85ae54eec8d9341bfb91e0022f777dea04fe (patch)
treebb448b2cc2712aa13fe9ec572de787948d1e8608 /npc/017-1
parent8dea5487a3d8831a28cf8cb0e69958a930c29d49 (diff)
downloadserverdata-5d3b85ae54eec8d9341bfb91e0022f777dea04fe.tar.gz
serverdata-5d3b85ae54eec8d9341bfb91e0022f777dea04fe.tar.bz2
serverdata-5d3b85ae54eec8d9341bfb91e0022f777dea04fe.tar.xz
serverdata-5d3b85ae54eec8d9341bfb91e0022f777dea04fe.zip
Minor balance
Diffstat (limited to 'npc/017-1')
-rw-r--r--npc/017-1/boringnpc.txt11
1 files changed, 6 insertions, 5 deletions
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;