diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-06-21 03:31:55 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-21 03:31:55 -0300 |
commit | 36b1e598d5e84b105a92ce3d3c3969573ab42c4c (patch) | |
tree | e98a6f1fecd536b4909ee5587cc42839cac51ea4 | |
parent | e7ce8a3f5fcd3b33701e568a0551df6d704b227e (diff) | |
download | serverdata-36b1e598d5e84b105a92ce3d3c3969573ab42c4c.tar.gz serverdata-36b1e598d5e84b105a92ce3d3c3969573ab42c4c.tar.bz2 serverdata-36b1e598d5e84b105a92ce3d3c3969573ab42c4c.tar.xz serverdata-36b1e598d5e84b105a92ce3d3c3969573ab42c4c.zip |
Exclude wands of the +40% ATK/MATK bonus %%n
Thinking well, that's not a good idea.
-rw-r--r-- | npc/craft/options.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index bf4913387..6d572f5bd 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -503,8 +503,8 @@ function script csys_BonusCalc { // Two Hands/Bows: +50% if ((@csysArmor & CSYS_ZWEIHANDER) || (@csysArmor & CSYS_RANGED)) .@base=max(1, .@base*3/2); - // Brawling/Magical: +40% - else if ((@csysArmor & CSYS_BRAWLING) || (@csysArmor & CSYS_MAGICAL)) + // Brawling: +40% + else if (@csysArmor & CSYS_BRAWLING) .@base=max(1, .@base*7/5); } |