• 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

Odd error with Unlimited NPC

Driving, Lockpicking, Pilot and Repair; they also can't access some more advanced Knowledges but there's no easy way to have HL deal with that (I could probably do some kind of a text search expression, but all it would need for it to not work is someone to use a misspelling or otherwise bork the text) so it just has to be remembered.
 
OK, for future reference you could do an evalrule on the Race record. Set it for PreTraits 5000 and try this:

Code:
      var bad as number
      @message &= "Skill not allowed: "
      foreach pick in Hero where "component.Skill"
        if (compare(eachpick.idstring,"skDriving") = 0) then
          bad += 1
          @message &= "Driving "
        elseif (compare(eachpick.idstring,"skLockPick") = 0) then
          bad += 1
          @message &= "Lockpicking "
        elseif (compare(eachpick.idstring,"skPiloting") = 0) then
          bad += 1
          @message &= "Piloting "
        elseif (compare(eachpick.idstring,"skRepair") = 0) then
          bad += 1
          @message &= "Repair "
          endif
        nexteach

      validif (bad = 0)
      if (ispanel <> 0) then
        linkvalid = 0
        endif

It still allows them to choose the Skill, but it'll throw an error and turn the race record red until the error is cleared. You could do the same for Edges.
 
I once had a player that kept things in the red. It was annoying and he seemed surprised when I asked that he fix things. His rationale was "Hero Lab let me do it".
 
The Edges effected were Thief (because of the Lockpicking), McGyver, Gadgeteer and Mr Fixit (because of the Repair).
 
Back
Top