Is there a way to have a custom wondrous item add a bonus feat?
i've got this so far:
also how do you test strings? the line where it checks the skill focus name fails with erro unable to test relation, is there a special function for this?
pretty much i want it to add the feat Skill Focus to the feat list if the item is equipped, also how could i also set the skill chosen for the focus at the same time?
thanks
i've got this so far:
Code:
doneif (field[gIsEquip].value = 0)
if (#hasfeat[fSkillFoc] <> 0) then
if (hero.child[fSkillFoc].field[fShortName].text <> "Skill Focus (Knowledge[arcana])") then
~ add feat here
endif
endif
also how do you test strings? the line where it checks the skill focus name fails with erro unable to test relation, is there a special function for this?
pretty much i want it to add the feat Skill Focus to the feat list if the item is equipped, also how could i also set the skill chosen for the focus at the same time?
thanks