From 18d3abc50c3660d2e20535076ba163ca149955c4 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 13 Sep 2019 22:13:37 -0300 Subject: Misc bugfix: Homun Market GP cap set to 7500 until I'm sure level 100 players can easily make 10kGP/hour :3 (Might need 10.1 release) --- npc/017-10/dispatcher.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'npc/017-10') diff --git a/npc/017-10/dispatcher.txt b/npc/017-10/dispatcher.txt index 6c05015be..11b33b0bd 100644 --- a/npc/017-10/dispatcher.txt +++ b/npc/017-10/dispatcher.txt @@ -239,7 +239,7 @@ L_Main: mesc ".:: " + l("The Market") + " ::."; mesc l("Send your Homunculus to make money!"); mesc l("Average EXP: 8"), 3; - mesc l("Maximum Profit: 10000 GP"), 3; + mesc l("Maximum Profit: @@ GP", format_number(.zenycap)), 3; mesc l("Common Drops: "+ getitemlink(Piberries)); mesc l("Regular Drops: "+ @@ -381,9 +381,8 @@ function lootField { break; case HCD_MARKET: .@val+=8; - // Maximum Profit: 10,000 GP // Sending a fresh homun in market may yield no GP. - Zeny+=min(10000, 1000*.@lv*min(10000, gethominfo(3))/100000); + Zeny+=min(.zenycap, 1000*.@lv*min(10000, gethominfo(3))/100000); anyloot(Piberries, .@lv, 9000, Bread, limit(1, .@lv/3, 12), 7000, Cheese, .@lv, 5000, @@ -399,6 +398,9 @@ function lootField { OnInit: .sex=G_MALE; .distance=5; + // Old Maximum Profit: 10,000 GP + // Coin Bag farming: 180 mobs, at 5% drop rate: 5,000 GP max + .zenycap=7500; end; } -- cgit v1.2.3-60-g2f50