View Single Post
ShadowRose
Junior Member
 
Join Date: Sep 2014
Posts: 17

Old September 2nd, 2014, 09:32 PM
Quote:
Originally Posted by Aaron View Post
Unfortunately, those tags are made by us, and users don't have access to those mechanisms. You can still do this though, you just have to overwrite the correct field after it is set by those tags and whatnot. The field is "cBonFtExpr" on the class helper.

Final 99999999
Code:
~ We start off with access to feat1, feat2, and feat3
hero.child[cHelpRgr].field[cBonFtExpr].text = "!Helper.Helper & (HasAbility.Feat1 | HasAbility.Feat2 | HasAbility.Feat3"

~ At level 6 we gain access to feat4 and feat 5
if (field[xTotalLev].value >= 6) then
  hero.child[cHelpRgr].field[cBonFtExpr].text &= "HasAbility.Feat4 | HasAbility.Feat5"
  endif

~ Close the parenthesis
hero.child[cHelpRgr].field[cBonFtExpr].text &= ")"
Obviously, replace Feat1 etc with the unique ID of the feats you want to allow at that point.
I like this option for a fix, but where do I find the field to replace with this? I'm still very new at this and I'm somewhat lost in the editor.
ShadowRose is offline   #9 Reply With Quote