• 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

Monkey Grip

skaven

Member
Greetings,

i looked for the Monkey Grip feat in the data set, but i found it to be text-only..

So i worked on a version who could check against the size of the weapons and validate them.

I think i found the solution:

Code:
~ first pick all the non-Natural weapons
      foreach pick in hero from BaseWep where "!component.BaseNatWep"


~ now re-classify weapons ignoring weapons that are smaller than base creature
      if (eachpick.field[gSizeDiff].value >= 0) then
       if (eachpick.field[gSizeDiff].value <= 1) then
         eachpick.field[wClass].value -= 1
       endif
      endif
        nexteach

It should work, i don't know if it combines with similar abilities (the Warhulk, for example), and it doesn't seem to work (for me at least) with "Powerful Build".

Can you help me?
 
Back
Top