• 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

Trying to create a flaw that removes racial abilities.

Pezmerga

Well-known member
I am attempting to create a flaw that removes the following racial abilities from the Half elf

Elf Blood
Elven Immunities (+2 saves vs enchantments)
Elven Immunities (Sleep)

Now when trying to get it to remove the Elf Blood, I tried this code.
Code:
Eval Script
First   5500 
foreach pick in hero where tagis[Ability.raHEBlood]
perform each.delete[Helper.ShowSpec]
perform each.assign[Helper.Suppress]
nexteach

Also tried
perform delete[Ability.raHEBlood]


Neither works...Any suggestions?
I tried looking for something similar but no luck so far. The alternate racial abilities just have a replacement check box instead of an eval script.
 
I believe this will accomplish what you're trying to do, for the Elven Blood:

Code:
Eval Script
First   5500 
perform hero.childfound[raHEBlood].delete[Helper.ShowSpec]
perform hero.childfound[raHEBlood].assign[Helper.SpcDisable]
 
I believe this will accomplish what you're trying to do, for the Elven Blood:

Code:
Eval Script
First   5500 
perform hero.childfound[raHEBlood].delete[Helper.ShowSpec]
perform hero.childfound[raHEBlood].assign[Helper.SpcDisable]

Awesome thanks!
 
Back
Top