Alright the perm tracker in the Adjust tab works great. (Using add skill points). Is there a way to just copy that only the Quickening skill show up and adjust?
Could you re-phrase this please, I can't understand what you're asking.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Alright the perm tracker in the Adjust tab works great. (Using add skill points). Is there a way to just copy that only the Quickening skill show up and adjust?
The way to handle a bonus feat of a specific category is to add +1 feats allowed, and create an eval rule that requires at least one feat of that type.
In an Eval Rule (NOT AN EVAL SCRIPT):
Timing: PreLevels/10000
Code:~add one feat allowed #resmax[resFeat] += 1 ~we're valid if the hero has at least one feat from the quickening category validif (hero.tagis[fCategory.Quickening] <> 0)
#value[abQckFeat] += however many we're offering
~add to our feats allowed
#resmax[resFeat] += field[abValue].value
~we're valid if the hero has at least as many quickening feats
~as we've awarded
validif (hero.tagis[fCategory.Quickening] >= field[abValue].value)