• 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

How to set reach for custom monster?

MNBlockHead

Well-known member
Whether selecting or creating a custom natural attack for a custom monster, reach is always 5' for a medium or large creature. If I want to change the default reach, I cannot find anyway to do so. There isn't a place to set it in the custom natural melee attack form nor is there any adjustment you can add that allows you change the default reach. I added notes in the description but it is a clumsy way to do it as the original incorrect figure remains.
 
If you're talking about the "Custom Monster" that you make on the fly, I don't know of any way to do it besides writing your own adjustment that borrows code from creatures like the giants.

post-level 10000
Code:
foreach pick in hero from BaseWep where "wCategory.Melee"
        eachpick.field[wReach].value = maximum(eachpick.field[wReach].value,10)
        nexteach

The "10" in the script sets the reach to 10 feet unless the reach is already longer. If you modified this into an adjustment, you could set that to the pick value on the adjustment. (field[pAdjust].value). Just remember to set the minimum to 0 and the maximum to whatever you want.

You could also just simplify that whole thing to
Code:
foreach pick in hero from BaseWep where "wCategory.Melee"
        eachpick.field[wReach].value = field[pAdjust].value
        nexteach
which would set it to whatever value the adjustment has.
 
Back
Top