I ran into an interesting issue when scripting the Unearthed Arcana Skill feats. So far they all work ok until get to the Perceptive feat:
This is my script:
Phase: Post-levels, Priority: 10000
Timing > Before scripts: Calc skProfBon
Everything works fine except when you play an elf with the Keen Senses ability.
It gives elves Proficiency with Perception using the following script:
Phase: First, Priority: 11000
The ability is assigned the tag
rofSkill.skPercep
For some reason my script doesn't see tagis[Helper.Proficient as done by the Keen Senses ability.
I've done several of the feats from the Unearth Arcana article with no issues, but for some reason I am having issues with Perception as its given by the Keen Senses ability.
Any idea what I may be doing wrong? Is it a HL bug as scripted?
You hone your senses until they become razor
sharp. You gain the following benefits:
• Increase your Wisdom score by 1, to a
maximum of 20.
• You gain proficiency in the Perception skill. If
you are already proficient in the skill, you add
double your proficiency bonus to checks you
make with it.
• Being in a lightly obscured area doesn’t impose
disadvantage on your Wisdom (Perception)
checks if you can both see and hear.
This is my script:
Phase: Post-levels, Priority: 10000
Timing > Before scripts: Calc skProfBon
doneif (tagis[Helper.ShowSpec] = 0)
doneif (tagis[Helper.Disable] <> 0)
if (hero.child[skPercep].tagis[Helper.Proficient] <> 0) then
perform hero.child[skPercep].assign[Helper.ProfDouble]
else
perform hero.child[skPercep].assign[Helper.Proficient]
endif
Everything works fine except when you play an elf with the Keen Senses ability.
It gives elves Proficiency with Perception using the following script:
Phase: First, Priority: 11000
~if we've been disabled, get out now
doneif (tagis[Helper.Disable] <> 0)
~assign our weapon proficiencies to the hero
perform hero.pushtags[ProfSkill.?]
The ability is assigned the tag

For some reason my script doesn't see tagis[Helper.Proficient as done by the Keen Senses ability.
I've done several of the feats from the Unearth Arcana article with no issues, but for some reason I am having issues with Perception as its given by the Keen Senses ability.
Any idea what I may be doing wrong? Is it a HL bug as scripted?