This is a common problem. Looks like it also needs some psi-like abilities. I don't seem to have the ECS on hand at the moment. Once I track that down I'll fix this up.
I can make the adjustment on my end and send you the file
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.
This is a common problem. Looks like it also needs some psi-like abilities. I don't seem to have the ECS on hand at the moment. Once I track that down I'll fix this up.
Divine Might feat from Complete Warrior (pg 106) has a prerequisite of Str 13, turn or rebuke undead ability, Power Attack. I can select the feat without the Power Attack feat.
Pool of Healing class variant from Complete Champion (pg 47) requires you to sacrifice a 4th level spell slot, also 7th level. You can select it early on and not sacrifice a slot.
My character has received a permanent attribute bonus to intelligence. Logically I would put that under Adjustments/permanent but that doesn't seem to trigger the skill point update. I know I can just adjust the base attribute but is just seems odd to me so I wanted to point it out.
My character has received a permanent attribute bonus to intelligence. Logically I would put that under Adjustments/permanent but that doesn't seem to trigger the skill point update. I know I can just adjust the base attribute but is just seems odd to me so I wanted to point it out.
@cshodow133 yes the skill points from previous levels seem to be missing.
I just unchecked the Adjustment left it there with a note for myself and changed my score manually.
According to the PHB, page 10: "Changing Ability Scores", last paragraph - You do not get skill points added for past levels, only new levels gained after the Int increase.
The spellcasting of the Duskblade gets borked if you enter a prestige class. You still keep gaining spells per day as appropriate but no longer get spells known as it uses a special to allow you to pick your level of spell. However, this special is tied to class level instead of effective level as adjusted by the prestige class.
The feat Master of Knowledge (heroes of horror) has a timing issue. It's set at Post-Attributes and needs to be set earlier.
Dread Witch (Heroes of Horror) should have 2+Int Skill Points/level (now is 0+int).
The Binder's Binding ability (Tome of Magic) is getting the calculation wrong again. It's getting half level first and that screws with the calculation for the binding check bonus.
It needs to calculate full level to set the first part of the summary (EBL = level)
It then needs to calculate checks for the summary (1d20 + level + charisma)
It's only after that that level gets cut in half for the summary (10 + 1/2 level + cha)
var level as number
var check as number
var difficulty as number
level = hero.childfound[xBind].field[Value].value
check = level + #attrmod[aCHA]
difficulty = 10 + #attrmod[aCHA] + round(level/2,0,-1)
Try this:
Code:var level as number var check as number var difficulty as number level = hero.childfound[xBind].field[Value].value check = level + #attrmod[aCHA] difficulty = 10 + #attrmod[aCHA] + round(level/2,0,-1)