• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Removing Shield/Off hand warning

venominon

New member
How would I write a feat that makes it so that character no longer gets checked for having a shield on their off hand? I want to make it so that my large round shield counts as a buckler, but I can't figure out how to get the warnings to go away and I hate having the tabs be red.
 
Check out this script on the buckler:

Code:
 (Pre-levels/10000)
      ~ If that is the case, tell the hero it's OK to have a shield equipped
      ~ and to apply a -1 penalty to melee attacks
      if (container.ishero <> 0) then
        if (field[gIsEquip].value <> 0) then
          perform hero.assign[Hero.ShldOffOK]
          perform hero.assign[Hero.OffShlP1]
          endif
      else
        if (parent.field[gIsEquip].value <> 0) then
          perform hero.assign[Hero.ShldOffOK]
          perform hero.assign[Hero.OffShlP1]
          endif
        endif

Looks to me like you need to apply those tags to the hero when your shield is equipped to remove the error.
 
Back
Top