• 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

Bloodline Spells

Frodie

Well-known member
I have an archetype that get bloodline abilities. All works fine, but the bonus spells are greyed out regardless of the level.

I have as my code

Code:
Post-levels 10000

      doneif (tagis[Helper.SpcDisable] <> 0)

      ~ add that many tags-counts-as tags to the hero
      var i as number
      for i = 1 to field[xTotalLev].value
        perform hero.assign[FtCountAs.Sorcerer]
        perform hero.assign[ClsCountAs.cHelpSor]
        perform hero.assign[CSCountAs.Sorcerer]
        perform hero.assign[SpellType.cHelpSor]
        next

     perform linkage[table].assign[ClsCountAs.cHelpSor]

Any ideas?
 
I got it, this is what I did

Code:
 post levels 10000

foreach pick in hero from BaseSpell where "BonusSplAt.?"
   perform eachpick.delete[SpellSort.cHelpSor]
   perform eachpick.delete[SpellType.cHelpSor]
   perform eachpick.assign[SpellType.cHelpInt]
   perform eachpick.assign[SpellType.cHelpInt]
nexteach
 
Back
Top