summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-01-26 03:18:58 -0300
committerJesusaves <cpntb1@ymail.com>2022-01-26 03:18:58 -0300
commitfcf6ca8d27d9ed9021a4e745d77851b3ab5a3e1e (patch)
tree54f823e0e234106cc46003214e3a13b6b9ef91ce
parent9ac27171a57f2a1730ab595379a6fff386192b74 (diff)
downloadserverdata-fcf6ca8d27d9ed9021a4e745d77851b3ab5a3e1e.tar.gz
serverdata-fcf6ca8d27d9ed9021a4e745d77851b3ab5a3e1e.tar.bz2
serverdata-fcf6ca8d27d9ed9021a4e745d77851b3ab5a3e1e.tar.xz
serverdata-fcf6ca8d27d9ed9021a4e745d77851b3ab5a3e1e.zip
Reduce Aeros max drop rate from 50% to 30%.
Luck does not affect strange coin drop rate, but monster level does.
-rw-r--r--npc/001-1/eventmaster.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/001-1/eventmaster.txt b/npc/001-1/eventmaster.txt
index d8f92a67f..add05c452 100644
--- a/npc/001-1/eventmaster.txt
+++ b/npc/001-1/eventmaster.txt
@@ -667,11 +667,11 @@ L_Rate:
mes "";
mes "Current drop rate: " + str($coinsrate);
- mes "Insert drop rate (from 0 to 10000, capped at 5000 or 50%). Use -1 to disable.";
+ mes "Insert drop rate (from 0 to 10000, capped at 3000 or 30%). Use -1 to disable.";
.@old = $coinsrate;
input $coinsrate;
- if ($coinsrate > 5000)
- $coinsrate=5000;
+ if ($coinsrate > 3000)
+ $coinsrate=3000;
if ($coinsrate != .@old)
consolewarn("Aeros Coins drop rate changed - highlight %s - by %s (%d) from %d to %d", "<@&411247967064948737>", strcharinfo(0), getcharid(3), .@old, $coinsrate);
mes "";