• 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

Here I go again

ErinRigh

Well-known member
OK, I know somebody musta asked this before, but I'll be damned if I can find it.

I am trying to build a feat based on Versatile Performer, that does for Crafts what that feat does for Performs.

The problem I am running into is in the prereqs.

I am trying to set the prerequisite to; Craft (Any) 5+ ranks

Based on Versatile Performer, that should look like;

herofield[Skill Ranks].value >= 5

Versatile Performer uses tMaxPerf to get the highest ranks in perform.

To my question ("Finally" you mutter);

Is there a similar ID to tMaxPerf for Maximum Crafts? If so, can you tell me where or how to find it, so I can use that? If it isn't any more straight forward than "Sure, it's <blank>" please tell me how to find the ID myself so that I don't need a similar explanation when I need to do the same for Max Knowledges.

If it is that simple, can you please give me both IDs (Max Craft and Max Knowledge)?

Thanks in advance
 
No such field exists on the hero. :(

Use this on a eval-rule:
Code:
~Loop through all the craft skills
foreach pick in hero from BaseSkill where "Helper.SkCatCraft"

  ~ If this skill has 5 or more ranks, we are valid
  validif (each.field[kUserRanks].value >= 5)
nexteach
 
Back
Top