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

Old April 16th, 2012, 02:52 PM
Quote:
Originally Posted by AndrewD2 View Post
As my testing for the size change doesn't seem to be doing anything I've moved on to adding flight with 5 or more HD. It compiles fine, but the flight doesn't show up.
This one is a little easier to figure out. Your script does not put the Custom.Abil12 tag on the hero until Post Level but the Container Script is looking for it to be there at first 1,000.

Though honestly this is the super hard way to do it. Much easier to not try and use bootstraps with Value.? tags as xFly is bootstrapped to all characters anyway. This works because xFly, xClimb, etc don't show themselves unless they have a value greater than zero.

So do this:
Code:
~ Post Level 10,000
if (#totallevelcount[] > 4) then
    ~ Give speed of 30
    #value[xFly] += 30
    ~ assign the Perfect Maneuver tag to Fly
    perform hero.child[xFly].assign[Maneuver.Perfect]
endif

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