• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

A Hero Lab Editor Question for Cortex

phant0m

New member
Hi All,

Just A quick editor question,
Currently when using the drop down box this allows you to pick 1 Skill that as a minor gains a +2 step modifier or as a major gets the +2 mod and -2 Advancement points

What I want want is to apply it to a skill and its benefits apply to all the specializations is there anyone out there who can help with cortex

Thanks

Menu#1 Label = Menu1
Menu#1 Source = All Picks on Hero
Menu#1 Tag Expression = component.Skill



~apply the +2 modifier to each selected skill
if (field[usrChosen1].ischosen <> 0) then
perform field[usrChosen1].chosen.field[trtInPlay].modify[+,2,""]

~as a major trait, XP costs are -2
if (field[abSteps].value >= 2) then
field[usrChosen1].chosen.field[trtXPMod].value -=2
endif
endif
 
Back
Top