View Single Post
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old February 2nd, 2018, 03:33 AM
Quote:
Originally Posted by Shaman964 View Post
Here it is. Maybe I screwed something up in my settings.
I'm seeing the validation reports, and will look into what's causing them. Thanks.

Update: Looks like I failed to properly update the Weapon Specialization feat with the most recent update. To fix this issue, open the Custom - Core Book Mods file in the editor, and replace the entire eval script for fWepSpec2 with the following:

Code:
      ~ If we're disabled, do nothing
      doneif (tagis[Helper.FtDisable] <> 0)
      
      ~ Set focus from the drop down or the Target.? tag
      var id   as string
      var name as string
      call fTargetId
      ~ We can't do anything without a unique id
      doneif (empty(id) <> 0)

      ~ Assign the appropriate tag to all weapons that meet the criteria
      foreach pick in hero where "IsWeapon." & id
        perform eachpick.assign[Broadcast.WepSpec]
        nexteach

      ~ Set our 'short name'
      field[fShortName].text = "Spec: " & name
        
      ~ Forward the weapon specialization tag for the weapon to the hero
      perform hero.assignstr["WepSpec." & id]

Last edited by Sendric; February 2nd, 2018 at 04:00 AM.
Sendric is offline   #746 Reply With Quote