• 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

spell-like ability by HD

Guiche007

Active member
Hi everyone,

I have created the Silverbrow Human from the Dragon Magic. That race has feather fall spell-like ability. They have one use of it at each 5 level. What i need is some tips of how to upgrade the charge of this ability. i know the script to use but not the variable. I need to know how to check the Hit Dice and how to augment the number of charge of this ability.

Thanks
 
Last edited:
Hi everyone,

I have created the Silverbrow Human from the Unearth Arcana. That race has feather fall spell-like ability. They have one use of it at each 5 level. What i need is some tips of how to upgrade the charge of this ability. i know the script to use but not the variable. I need to know how to check the Hit Dice and how to augment the number of charge of this ability.

Thanks

Here's a couple of things to make it easier to find these things on your own. When you enter a number into the Total Charges box, you will see that a new entry is added to the "Fields" button in the upper right. Click on the Fields button, and you will find the field "hTotal" has been added. This is the field that controls how many charges there are.

Over in the portfolio, go to Develop -> Floating Info Windows -> Show Hero Fields. Looking through these fields you will come upon a field called "tHitDice". As you can imagine, this field contains the total number of Hit Dice your character has. To access this field, and any of the others in this dialogue, you would use the following:

Code:
herofield[tHitDice].value

You most likely need to run any script that uses this field post-levels.
 
Hi Sendric,

Thanks it's working perfectly. The last thing i'm working on is the Disguise class skill is always considered a class skill. I have checked the class skill in the race but it's not considered has a class skill. Can you give me some tips on that case?

Thanks
 
Hi Sendric,

Thanks it's working perfectly. The last thing i'm working on is the Disguise class skill is always considered a class skill. I have checked the class skill in the race but it's not considered has a class skill. Can you give me some tips on that case?

Thanks

Sorry. Yes. By assigning it as a class skill to the race, that means its a class skill for any racial HD you have, and it isn't transferred to any classes the character takes. A simple solution would probably be to foreach through each class and add the appropriate tag, such as:

Code:
foreach pick in hero from BaseClHelp
 perform eachpick.assign[ClassSkill.kDisguise]
nexteach

Run this at First/1000, and you should be golden. It will create duplicate tags on some classes, but that's probably not an issue.
 
Back
Top