• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Adding text to Fly ability!

bodrin

Well-known member
I was wondering if the is an easy way to add the (Su) text next to the Fly description on the Portfolio!

Code:
var result as number

      ~ Assign the Fly Speed to a Supernatural ability.
      result = hero.childfound[xFly].assign[Maneuver.?]

At the moment i'm looking at the above code but keep getting invalid thing references if I modify it to try and add (Su) to the Maneuver.? description.

Is there some other field that needs to identify it as a Supernatural Flight ability.

Many thanks for help in advance.
 
Supernatural is AbilType.Super - just add that tag, and HL will note it and append the "(Su)" text for you.

You can add tags to a bootstrap when defining it - you don't even need to use a script to add that.
 
You can add tags to a bootstrap when defining it - you don't even need to use a script to add that.

I noticed when I do this (like for SpecSource), it doesn't seem to remove the original.

So I end up with things like this "(Druid, Ranger)" when I add SpecSource for Ranger on a Druid ability.

I had to write a script, but can I fix this without a script in the bootstrap window?
 
Supernatural is AbilType.Super - just add that tag, and HL will note it and append the "(Su)" text for you.

You can add tags to a bootstrap when defining it - you don't even need to use a script to add that.

Finished code works a treat.

Code:
var result as number

      ~ Assign the Fly Speed to a Supernatural ability as a dread skeleton uses bony wings without flesh coverings, how the hell would it fly then?.
      result = hero.childfound[xFly].assign[AbilType.Super]
 
Back
Top