• 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

Bracers of Expert Throwing

tcharleschapman

Well-known member
I would like to make an item like "Amulet of mighty Fists" that would transfer a bonus to a weapon you throw. I want it to apply to only thrown weapons. Any help you all can give me in coding it? Literally I want a bracers slot amulet of mighty fist that applies to thrown weapons instead but I can't work out the kinks.
 
This is fairly simple conceptually.

Take the amulet of mighty fists, copy it into a new item, change it's ID to match what you want, change the slot from neck to wrists, and look at the eval script. It will likely have some sort of foreach loop that checks for unarmed strikes or natural weapons. You just need to strip out the unarmed strikes and change natural weapons to thrown weapons.

I did just that below:

Code:
      if (field[gIsEquip].value <> 0) then
        foreach pick in hero from BaseWep where "wCategory.Thrown"
          #enhancementbonus[eachpick, 5]
          nexteach
        endif
 
Back
Top