Lone Wolf Development Forums

Lone Wolf Development Forums (http://forums.wolflair.com/index.php)
-   HL - D&D 5th Edition SRD (http://forums.wolflair.com/forumdisplay.php?f=89)
-   -   How to set reach for custom monster? (http://forums.wolflair.com/showthread.php?t=62465)

MNBlockHead April 18th, 2019 10:16 PM

How to set reach for custom monster?
 
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.

dungeonguru April 19th, 2019 03:52 AM

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.


All times are GMT -8. The time now is 11:31 AM.

Powered by vBulletin® - Copyright ©2000 - 2024, vBulletin Solutions, Inc.
wolflair.com copyright ©1998-2016 Lone Wolf Development, Inc. View our Privacy Policy here.