• 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

Feint DC in Basics panel

Farling

Well-known member
Is there a simple way of adding the Feint DC to the Basics panel of herolab for monsters?

I plan to use Feint a lot, and it would be beneficial to allow the GM to quickly see what the DC is for each of my enemies :-)
 
You would need to create a custom "skill" for that I did something similar for intimidate since a few of my players have those builds
 
Something like:
Code:
var basic_value as number
var sm_value as number
basic_value = 10 + hero.child[Attack].field[tAtkBase].value + #attrmod[aWIS]
if (#skillranks[skSenseMot] > 0) then
  sm_value = 10 + hero.child[skSenseMot].field[skTotal].value
endif
field[skTotal].value = maximum(sm_value,basic_value)
 
Back
Top