• 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

Skill or Hindrance requirement for an Edge

Gumbytie

Well-known member
First time I have encountered this combination for an Edge, either a Skill level or Hindrance is a requirement.

Illusionist
Requirements: Spellcasting d6+ or the Only Illusions Hindrance

So I have two versions of code I have tried and neither seems to work. No errors, just not working.

Version One:
Code:
        validif (#traitfound[skTYRSpellcast] >= 3)
        validif (hero.tagis[Hindrance.hinTYROnlyIllusio] <> 0)
        if (@ispick <> 0) then
          altpick.linkvalid = 0
          endif

and

Version Two:
Code:
        validif (hero.tagis[Sk.skTYRSpellcast] >= 3)
        validif (hero.tagis[Hindrance.hinTYROnlyIllusio] <> 0)
        if (@ispick <> 0) then
          altpick.linkvalid = 0
          endif

Any suggestions on where I screwed up? :)
 
OK, the first one is the one that should work. Ensure that skTYRSpellcast is the Spellcasting Skill being used.
Also, check your hero tag list and ensure that tag is present on the hero when the Hindrance is selected.
The code looks correct, though. Either one being true should pass that test.
 
Back
Top