• 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

Checking that a certain knowledge skills is at the correct die type

Praetor

Well-known member
CapedCrusader posted the way to find if a certain knowledge skill existed, but how would I find out if a certain knowledge skill was at the correct die type.

Such as PreReq of an edge is Knowledge "Battle" D6

Thanks
 
let me check my code here....

This is an example of a Pre-req of Knowledge(Astronomy) d10+

Code:
        foreach pick in hero where "thingid.skKnow"
          if (compare(lowercase(eachpick.field[domDomain].text),"astronomy") = 0) then
            validif (eachpick.field[trtFinal].value >= 5)
            endif
          nexteach
 
Back
Top