• 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 questions

Kaleb

Well-known member
I am creating a new Bloodrage/Sorc bloodline. Do I add the bloodline powers in the class abilities tab or the custom ability tab?

I want to add a new power Chain Armor where you get a +4 armor bonus and a+2 armor bonus each 3 levels. how would I write an eval script to do this?
 
the powers you get at levels are created in the class special tab, the bootstrapped to the custom special at the appropriate levels
 
This does the trick, just replace "OBTAINED#" with whatever level the ability is gained at. It will give a +4 armor bonus at that level, then increase it by 2 every three levels thereafter. Just take out the "- OBTAINED#" if it is gained at level 1.

Code:
      ~if we're not shown, just get out now
      doneif (tagis[Helper.ShowSpec] = 0)

      ~ If we're disabled, do nothing
      doneif (tagis[Helper.SpcDisable] <> 0)

      field[abValue].value = field[xAllLev].value - OBTAINED#

      field[abValue2].value = round(field[abValue].value/3,0,-1)*2 + 4

      #applybonus[tACArmor, hero.child[ArmorClass], field[abValue2].value]
 
Back
Top