TCArknight wrote:
>
>
> As kind of a related thing, is there a similar thing to use to do a
> bonus to say all STR or CHA based skills?
There is, but it's more complex. You'd create a script that does this:
~ For each skill...
foreach pick in hero where "component.BaseSkill"
~ If this skill has a linked attribute, and the attribute is
~ strength (i.e. this is a strength-based skill), add +1 to it
if (each.islinkage[skillattr] <> 0) then
if (each.linkage[skillattr].tagis[IsAttr.aSTR] <> 0) then
each.field[Bonus].value += 1
endif
endif
~ Go on to the next skill
nexteach
Replace "STR" with the appropriate attribute abbreviation for your
attribute.
--
Colen McAlister (colen@wolflair.com)
Chief Engineer, Lone Wolf Development
http://www.wolflair.com/