diff options
Diffstat (limited to 'npc/craft')
-rw-r--r-- | npc/craft/options.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index b023a1e19..8909045a0 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -525,6 +525,11 @@ function script csys_BonusCalc { if (.@base >= (.@avg+1)*7/10) .@base=rand2(1, .@avg+1); + // Bonus grace reroll if crafting is maxed at 10 (SCRIPT only) + if (.@craft >= 10 && .@base < (.@avg+1)*.@eqlv/500) { + .@base=rand2(1, .@avg+1); + } + //////////////////////////////////// // Legendary Weapon? Effects +50% if (@csysArmor & CSYS_LEGENDARY) |