View Single Post
Morphaeon
Junior Member
 
Join Date: Nov 2016
Location: Florida
Posts: 3

Old April 11th, 2018, 04:25 PM
Quote:
Originally Posted by dungeonguru View Post
I would first suggest that you create this as a class special rather than a racial special, since applying a racial ability as a class bootstrap can confuse you when you're troubleshooting later.

Secondly, you can put this in as a Custom Expression down in the Item Selection area:

SkillAbil.aDEX (remember to restrict this list to All Picks on Hero)

Any skill that uses DEX will have this tag on it.

You would then need to write a script that looks like the following in post-levels/10000 timing or so:

Code:
      if (field[usrChosen1].ischosen <> 0) then
        tagexpr = field[usrChosen1].chosen.tagids[ProfSkill.?," | "]
        foreach pick in hero from BaseSkill where tagexpr
          perform eachpick.assign[Helper.Proficient]
          nexteach
I haven't tested this code, but it's close to what you want to do or should get you pointed down the path.
Thank you so much! That did exactly what I wanted it to!
Morphaeon is offline   #3 Reply With Quote