diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/mobpoint.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/mobpoint.txt b/npc/functions/mobpoint.txt index 6a6ed99ad..5f9eb2b05 100644 --- a/npc/functions/mobpoint.txt +++ b/npc/functions/mobpoint.txt @@ -26,8 +26,8 @@ function script mobpoint { // Penalty/Bonus .@base=(.@moblv-BaseLevel); if (BaseLevel < .@moblv) { - // Target is stronger, +1% per monster level, capped at +50% - .@addval = .@addval * limit(100, 100+.@base, 150) / 100; + // Target is stronger, +3% per monster level, capped at +75% + .@addval = .@addval * limit(100, 100+(.@base*3), 175) / 100; } else if (BaseLevel > .@moblv) { // Target is weaker, -1% per monster level, capped at -50% .@addval = .@addval * limit(50, 101+.@base, 100) / 100; |