I'm putting together a new prestige class and I'm running into trouble on the prereqs. Here's what the class requires:
I don't have a clue on the ability score test, but I've tried two different ways on the skills and neither is working.
The first uses the following script as an Expr-reqs:
Nothing. :/
The other script I'm lifting from the Loremaster, this time from the Pre-reqs field:
Again, nothing. What am I getting wrong?
While I'm here, how do I let the class choose Domain powers (not domain spells, just their powers)? I can't find where the cleric is getting the ability from.
Hyrum.
Ability Scores: At least two ability scores of 16 or higher.
Skills: 3 skills with 5 ranks.
I don't have a clue on the ability score test, but I've tried two different ways on the skills and neither is working.
The first uses the following script as an Expr-reqs:
#skillranks[AllSkills] >= 5
Nothing. :/
The other script I'm lifting from the Loremaster, this time from the Pre-reqs field:
~search through all the skills we have and count how many we have 5+ ranks in
var bonus as number
foreach pick in hero from BaseSkill where "Helper.AllSkills"
if (eachpick.field[skUser].value >= 5) then
bonus += 1
endif
nexteach
validif (bonus >= 2)
Again, nothing. What am I getting wrong?
While I'm here, how do I let the class choose Domain powers (not domain spells, just their powers)? I can't find where the cleric is getting the ability from.
Hyrum.
Last edited: