• 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

Bonus Feats Question

Culhwch

Well-known member
Let's say I want to create a Special that gives the hero a bonus feat of Spell Focus (enchantment). I've got the feat bootstrapped in, but I need a way to force the choice to be enchantment. Is there an easy way to do that? I did a search in the existing files, but couldn't find anything similar.

Thanks.
 
Culhwch wrote:
>
>
> Let's say I want to create a Special that gives the hero a bonus feat of
> Spell Focus (enchantment). I've got the feat bootstrapped in, but I need
> a way to force the choice to be enchantment. Is there an easy way to do
> that? I did a search in the existing files, but couldn't find anything
> similar.


There's no way to force the user to take Enchantment. The easiest way to
do this would be to create a new feat that did the following:

var result as number
result = hero.child[ssEnchant].assign[Broadcast.SpellFocus]

That should have the same effect as adding the Spell Focus: Enchantment
feat.


Hope this helps,


--
Colen McAlister (colen@wolflair.com)
Chief Engineer, Lone Wolf Development
http://www.wolflair.com/
 
At 06:00 PM 4/2/2007, you wrote:
> Let's say I want to create a Special that gives the hero a bonus feat of
> Spell Focus (enchantment). I've got the feat bootstrapped in, but I need
> a way to force the choice to be enchantment. Is there an easy way to do
> that? I did a search in the existing files, but couldn't find anything
> similar.
Another approach would be to write an eval rule that verifies the user has the Spell Focus (Enchantment) ability by checking for the corresponding tag. While this wouldn't force the user to select Enchantment, it would flag an error if the user picked anything OTHER than Enchantment, which is 99% of the way to a solution.

Colen and I have discussed providing a way to explicitly assign an otherwise user-selectable feat (like Spell Focus, Weapon Focus, etc.). We've got some ideas for how to solve it, so this will hopefully not be a minor limitation for much longer...

-Rob
 
Has this been accomplished? I can't find it in the help or FAQ.

rob said:
At 06:00 PM 4/2/2007, you wrote:

Colen and I have discussed providing a way to explicitly assign an otherwise user-selectable feat (like Spell Focus, Weapon Focus, etc.). We've got some ideas for how to solve it, so this will hopefully not be a minor limitation for much longer...

-Rob
 
Back
Top