• 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

How to: Force User to select one craft skill per level.

tatteredking

Well-known member
I am working on entering the Ironborn race from Rite Publishing for my own personal game. One of the Ability Packages grants one rank in a craft skill at level 1 and one extra skill point for craft skills at each level. I can grant one skill point per level, but I need to determine how to check and see if the PC has one skill point in craft per level.

Thoughts?
 
As usual, no assurances on the code. Test and tweak as necessary

Code:
var craftranks as number

foreach pick in hero from BaseSkill where "Helper.SkCatCraft"
  craftranks += eachpick.field[skInnate].value
  craftranks += eachpick.field[skUser].value
  nexteach

validif (craftranks >= #totallevelcount[])
 
Last edited:
Back
Top