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

Old November 15th, 2017, 11:15 AM
Quote:
Originally Posted by dungeonguru View Post
Code:
hero.childfound[rAbility].field[abActive].value <> 0
Simple answer is you can't. Pretty much you would need to then set a Local Variable like this:
Code:
field[abValue5].value = hero.childfound[rAbility].field[abActive].value
Then on the current Pick use the following in the boostrap condition:
Code:
fieldval:abValue5 <> 0
You can also do what you said above is set a tag on the hero container. The community can not create any tags that start with Hero.? as that is only for LW. What I did in the Pathfinder Community Pack is make up PackHero.? and PackHelper.? tag group that I could control. But a Custom.? tag on the hero container works as well for bootstrap conditions:

Code:
If (hero.childfound[rAbility].field[abActive].value <> 0) Then
   perform hero.assign[Custom.ThingOn]
Endif
Bootstrap condition:
Code:
Custom.ThingOn
Hope that helps.

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   #8 Reply With Quote