Lone Wolf Development Forums  

Go Back   Lone Wolf Development Forums > Hero Lab Forums > HL - D&D 5th Edition SRD

Notices

Reply
 
Thread Tools Display Modes
ShadowChemosh
Senior Member
Volunteer Data File Contributor
 
Join Date: Jan 2010
Location: Chicago, IL (USA)
Posts: 10,729

Old February 20th, 2016, 07:06 AM
Quote:
Originally Posted by azuravian View Post
I added Elemental Adept using the instructions on the front page and came across two issues.
Elemental Adept currently only works if you have the 5e community pack loaded. This is because I created a "custom" validation procedure that will only work if you have the 5e Pack loaded. I did that as multiple feats needed to do the same logic test. You can tell because the procedure name starts with "5C" which stands for 5e Community.

In addition the custom expression uses Selection Helpers for "Energy Types" that I built for the 5e Pack.

Most likely best to just wait out the release of the Pack which should be soon...

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.

Last edited by ShadowChemosh; February 20th, 2016 at 08:13 AM.
ShadowChemosh is offline   #91 Reply With Quote
ShadowChemosh
Senior Member
Volunteer Data File Contributor
 
Join Date: Jan 2010
Location: Chicago, IL (USA)
Posts: 10,729

Old February 20th, 2016, 10:43 AM
Quote:
Originally Posted by TonganJedi View Post
For example, I selected the feet, equipped two rapiers, and the print preview shows both rapiers in the main hand and the bonus damage from the ability modifier is not removed from the off-hand weapon.

This could be an issue with the sheet generator, but I thought I'd point it out just in case. Thanks again!
To get the sheet to display correctly you have do a "CTRL-K" and scroll to the bottom and turn on "Always Print 2-Weapon Attacks". Then the sheet will match the UI.

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   #92 Reply With Quote
CNYGamer
Member
 
Join Date: Aug 2009
Location: Finger Lakes Region, New York
Posts: 59

Old February 21st, 2016, 05:57 AM
The dual wielder feat as listed has a couple of problem:

(1).
If you equip a ranged weapon, such as hand crossbow, it will trigger the AC bonus.

(2).
If you equip a weapon in two hands, such as equipping a longsword in both the main and off hand, it will trigger the AC bonus.

I tinkered around with it, and this seems to get us a few steps closer toward something ideal:

Quote:
~exit if disabled
doneif (tagis[Helper.Disable] <> 0)

~exit if fewer than two weapons are equipped
~keeps feat from triggering if a one-handed weapon
~is equipped in both hands
doneif (hero.tagcount[Hero.EquipWep] < 2)

~counter variable
field[abValue].value = 0

~add up total number of weapons in character's inventory
~that are equipped in the main hand and the off hand
foreach pick in hero from BaseWep where "(wCategory.Melee)"
if (eachpick.field[gIsEquip].value = 1) then
field[abValue].value += 1
endif
if (eachpick.field[wIs2nd].value = 1)then
field[abValue].value += 1
perform eachpick.assign[wProperty.Light]
endif
nexteach

~exit if there isn't a weapon in both the main hand
~and the off hand
doneif (field[abValue].value < 2)

~add 1 to armor class
hero.childfound[ArmorClass].field[Bonus].value += 1
It's quite inelegant, but there is still so much about the syntax of this scripting language that I don't know. And not having access to the scripts that make up the core 5e SRD rules for Hero Lab is also pretty crippling.

Jamie (CNYGamer)
CNYGamer is offline   #93 Reply With Quote
daplunk
Senior Member
 
Join Date: Jan 2016
Location: Adelaide, Australia
Posts: 2,294

Old February 21st, 2016, 12:22 PM
These have all been released in the 5e Community Pack.

Please see the official thread for instructions on how to log issues and requests through to the main GitHub repository. This will ensure issues are properly tracked and maintained.
daplunk is offline   #94 Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 01:58 PM.


Powered by vBulletin® - Copyright ©2000 - 2024, vBulletin Solutions, Inc.
wolflair.com copyright ©1998-2016 Lone Wolf Development, Inc. View our Privacy Policy here.