• 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

Honor Points - Tracking within HL

KataH

Active member
Does Hero Lab for Pathfinder have a place to track Honor Points? (I am not talking about Hero Points).
If so, where is that within the program?

Honor Points are from Ultimate Campaign in case you did not know.
 
Sorry, just reminded me of a bug I had a hard time tracking down where the platypus was taking a mysterious -2 penalty to will saves, which I eventually discovered to be because their very low CR caused them to calculate as having 0 Honor points, which was applying the dishonored penalties to themselves. This was years ago, but it was sufficiently annoying that it stuck with me. I even made note of it in the code to fix the problem.

Code:
      ~some NPCs have CR low enough that they end up with 0 base honor. If we
      ~have CR less than 1/4 then we are probably a platypus. Platapy have no
      ~Honor!
 
Sorry, just reminded me of a bug I had a hard time tracking down where the platypus was taking a mysterious -2 penalty to will saves, which I eventually discovered to be because their very low CR caused them to calculate as having 0 Honor points, which was applying the dishonored penalties to themselves. This was years ago, but it was sufficiently annoying that it stuck with me. I even made note of it in the code to fix the problem.

Code:
      ~some NPCs have CR low enough that they end up with 0 base honor. If we
      ~have CR less than 1/4 then we are probably a platypus. Platapy have no
      ~Honor!
This is hilarious!
 
Back
Top