• 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

About Paragons

You need to use a prereq first, as this cannot be done with an expression requirement.

You'll need to use a foreach loop to go through the skills.

Something like this should get you where you need to go...
Code:
  var validate as number

  foreach pick in hero from BaseSkill
    if (eachpick.field[skRanks].value >= 5) then
      validate += 1
      endif
    nexteach

  validif (validate >= 3)
 
Thanks! worked great. Got another issue related to this paragon...need to do this?.................

At least two ability scores of 16 or higher.

Script help please?
 
Thanks! worked great. Got another issue related to this paragon...need to do this?.................

At least two ability scores of 16 or higher.

Script help please?

For that one you just need to modify the script I already gave you...
Build another prereq just like that one, and do the following replacements:

change BaseSkill to BaseAttr (This switches you from skills to attributes)
change the field name skRanks over to aFinalVal (this changes you to the final value field of the attributes)
change 5 to 16 (You want two attributes over 16 not 5)
change the validif equality value from 3 to 2 (because you want 2 things that meet this requirement).

That's all there is to it. The same script will work, just modify it and you're good to go.
 
Yes! Thanks! Almost had it. I figured it was similar, but I did not find the BaseAttr yet. Thanks again!


If you've enabled data file debugging under the Development menu, you just need to right click an attribute or skill, look at the debug tags for component.
tags and figure out which one you need.

The debug fields will give you the value fields you need too. It's not too hard to figure out just takes time.
 
Back
Top