Hello, I'm trying to add an ability, preferably to a ring item, that increases the Caster Level of all spells with the Fire Descriptor by 1. The only comparison I can find is the Aasimar Sorcerer favored class bonus that adds +1/4 to Caster Level of Good Spells cast.
I've tried to edit this eval script but it just doesn't seem to work. Can someone please help me re-write the eval script so I can apply it ideally to the ring but even just as a trait would be helpful. Thank you!
				
			I've tried to edit this eval script but it just doesn't seem to work. Can someone please help me re-write the eval script so I can apply it ideally to the ring but even just as a trait would be helpful. Thank you!
Aasimar Eval Script said:field[abValue].value += round(field[fcCount].value/4,0,-1)
doneif (field[abValue].value = 0)
perform assign[Helper.ShowSpec]
field[livename].text = signed(field[abValue].value) & " to Caster Level for Good spells"
foreach pick in hero from BaseSpell where "sDescript.Good"
eachpick.field[sCL].value += field[abValue].value
nexteach
