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.
Assign the SkillOver.aCHA tag to each of the wisdom-based spells.
How would you search for all skills?
~ Make the Concentration skill use the Charisma Ability modifier instead of Constitution
foreach pick in hero from BaseSkill where "!thingid.kConcent"
perform eachpick.assign[SkillOver.aCHA]
nexteach
~ Make the Concentration skill use the Charisma Ability modifier instead of Constitution
foreach pick in hero from BaseSkill where "thingid.kConcent"
perform eachpick.assign[SkillOver.aCHA]
nexteach
perform hero.childfound[kConcent].assign[SkillOver.aCHA]
You don't need the full foreach if you know the single, specific thing you want to find:
Code:perform hero.childfound[kConent].assign[SkillOver.aCHA]
The fact that SkillOver doesn't change the name in the display is something I've noticed before but haven't gotten around to changing yet.