• 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

Correction for Multiattack pre-req

huntercc

Well-known member
I happened to notice that the Multiattack feat pre-req script does not take into account a natural weapon with the helper tag "RaceHands". Here's my version of the pre-req script that does take this into account:

Code:
        var total as number
        var numattacks as number
        var ishands as number
        var numhands as number
        numhands = herofield[tNumHands].value
        foreach pick in hero where "component.BaseNatWep"
          ishands = each.tagis[Helper.RaceHands]
          if (ishands > 0) then
            numattacks = numhands
          else
            numattacks = each.tagmax[Value.?]
            numattacks = maximum(numattacks,1)
            endif
          total += numattacks
          nexteach
        if (total >= 3) then
          @valid = 1
          endif
 
huntercc wrote:
>
>
> I happened to notice that the Multiattack feat pre-req script does not
> take into account a natural weapon with the helper tag "RaceHands".
> Here's my version of the pre-req script that does take this into account:


Thanks! We'll get this corrected in a future version. :)


--
Colen McAlister, colen@wolflair.com
Chief Engineer, Lone Wolf Development
 
Back
Top