• 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

template with SLA by HD

Guiche007

Active member
Hi everyone,

I'm trying to create a template (half-fey from Fiend Folio) but a have some problem with the Spell-Like Ability it gaine by HD. Can you tell me how to do it?

Thanks
 
Here's what I would do. Create a new Special for the half-fey template that is called Spell-Like abilities. In the script, you can modify the description of the spell-like ability in a script (field[CustDesc].text) and you can apply a conditional if/then/else statement that looks at the hit dice of the hero and modifies the description based on the HD advancement.

Does that help?
 
Here's what I would do. Create a new Special for the half-fey template that is called Spell-Like abilities. In the script, you can modify the description of the spell-like ability in a script (field[CustDesc].text) and you can apply a conditional if/then/else statement that looks at the hit dice of the hero and modifies the description based on the HD advancement.

Does that help?

The problem with doing it that way is it doesn't post the per day uses of each ability on the In play tab.

The best way I found when I made the Half-Fey was to set a conditional bootstrap each of the half-fey specials. It works... mostly, though it sometimes causes problems with racial HD..

Code:
count:Hero.HitDice >= ##
 
In your conditional, you can set the field[hTotal].value to the number of uses per day based on the HD.

Half-Fey have more than one special ability, doing the way you suggested. (Or how I think you were suggesting if I was mistaken), you'd have a special listing off all of their spell-like abilities.

Having a single special listing off multiple spell likes is no go when they have 10 of them each with their own per day uses and DC. I've seen that happen with other monsters, such as the Guardinals from the book of exalted deeds, or the Draconians from the DLCS.

Though I think we just misunderstood each other...
 
Back
Top