• 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

Conditional Bootstrap

Sevisin

Well-known member
Hello.

Once again, I'm stuck with a small and simple scenario. I'm working on my Desert Kobold race and I'm having difficulty with the conditions. Here is my goal:
Adding the tail attack if they have the Dragon Tail feat (fDragTail).
Tag Expression: @valid=hasfeat[fDrgTail] didn't work. #hasfeat[fDrgTail] <> 0 didn't work either. What should I put there?

Thanks for the info.

-S
 
Bootstrap conditionals are a different beast. Mathias wrote a post about them a while back that can be found here:

http://forums.wolflair.com/showthread.php?t=47611

For what you are trying to do, you would need:

Code:
HasFeat.fDrgTail

That's it. I don't know off the top of my head when this tag gets applied to the hero, so I'm not positive what the timing would be.

That said, it would be far easier to bootstrap the tail attack to the Dragon Tail feat instead.
 
Pretty sure all "HasFeat" tags are applied REALLY late around Final something. They are used for "validation" and need to allow time for a feat to become disabled.

I am not near HL to check but an Ability.fDrgTail tag should be getting applied to the hero much earlier.
 
Back
Top