diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-08-10 23:42:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-08-10 23:42:43 -0300 |
commit | 5a6a78b26cd51488aeb929d17d524e9245f62995 (patch) | |
tree | e2e74e022c82eab3a207037708af358fbb939d6f | |
parent | 2fa0779fd6c02fced1fa5324f282876157f5d77d (diff) | |
download | serverdata-5a6a78b26cd51488aeb929d17d524e9245f62995.tar.gz serverdata-5a6a78b26cd51488aeb929d17d524e9245f62995.tar.bz2 serverdata-5a6a78b26cd51488aeb929d17d524e9245f62995.tar.xz serverdata-5a6a78b26cd51488aeb929d17d524e9245f62995.zip |
With the mount corrections, this aspd/evd nerf should be nerfed.
-rw-r--r-- | npc/functions/hub.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index aca498224..90273b360 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -1513,13 +1513,13 @@ function script HUB_PCBonus { if (JobClass & CLASS_PALADIN) bonus bAspd, .@blvl / 50; // Max +16 else - bonus bAspd, -(.@blvl / 20); // Max -40 + bonus bAspd, -(.@blvl / 100); // Max -8 // Ninja if (JobClass & CLASS_NINJA) bonus bFlee, .@blvl / 50; // Max +16 else - bonus bFlee, -(.@blvl / 20); // Max -40 + bonus bFlee, -(.@blvl / 25); // Max -32 // Carry if (JobClass & CLASS_CARRY) |