View Single Post
ShadowChemosh
Senior Member
Volunteer Data File Contributor
 
Join Date: Jan 2010
Location: Chicago, IL (USA)
Posts: 10,729

Old August 4th, 2019, 05:43 PM
I am not sure on the ability for agile weapons to be -4/-8. But here is the script I use in my houserules file. I run it off a mechanic:

Final/12550
Code:
      ~ Set hero to only display one attack
      perform hero.assign[Dependant.NoIterAtk]

      ~ Now set each weapon to display a total of 3 attacks
      foreach pick in hero from BaseWep
        if (eachpick.tagexpr[fieldval:gIsEquip = 0 & fieldval:wIs2nd = 1] <> 0) then
          ~ Do nothing for "off-hand" weapons
        else
          perform eachpick.assign[Helper.ExtraIter]
          perform eachpick.assign[Helper.ExtraIter]
          ~ Weapons like Daggers have a special tag to prevent additional
          ~ attacks from displaying. With the unchained rules this does
          ~ make sense. So display all three attacks.
          perform eachpick.delete[Helper.SingleRAtt]
        endif

      nexteach

Hero Lab Resources:
Pathfinder - d20pfsrd and Pathfinder Pack Setup
3.5 D&D (d20) - Community Server Setup
5E D&D - Community Server Setup
Hero Lab Help - Hero Lab FAQ, Editor Tutorials and Videos, Editor & Scripting Resources.
Created by the community for the community
- Realm Works kickstarter backer (Alpha Wolf) and Beta tester.
- d20 HL package volunteer editor.
ShadowChemosh is offline   #2 Reply With Quote