• 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

Concentration Adjustment

Caraldur

Active member
I am running the Serpent's skull adventure path and I am trying to add a concentration adjustment because when the party moves Jask's attitude to helpful they receive a permanent +2 concentration bonus.

I tried using the PFRPG_ConcSkill.user file and just adding a skill adjustment but it is not adding the adjustment to the skill.

So I created my own adjustment and used this code

Code:
~ If we're not enabled, get out now
doneif (field[pIsOn].value = 0)

~ Give Bonus Concentration
herofield[tConcCheck].value += field[pAdjust].value

I have the phase set to final phase priority 10000, I have also tried setting the phase to post attributes but that didn't work either. Hopefully someone can point me in the right direction so I can get this to work.

-Fred
 
The Focused Mind trait is an example of an existing thing that alters Concentration checks - it's script is at First/10000.

(looking at the actual code, it needs to happen before Post-Attributes/2)
 
I have the phase set to final phase priority 10000, I have also tried setting the phase to post attributes but that didn't work either.
Yea as Mathias said your way to late it has to be done very early. So First/10,000 works. That is a good idea to have those adjustments as part of the Concentration Skill add-on file just encase others need to do the same for the future.

So I added two new adjustments to the .user file for v1.3. One adjustment does all classes and the other one lets you select a specific class to adjust. I uploaded the new version to d20pfsrd in the zMisc folder.
 
Go ahead and email those adjustments to me, if you don't mind - I'll add them to the next update.
 
Back
Top