• 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

Adding New Magic Item

5jays217

New member
I can't locate where to place the +1 for Spell Attack and Spell Save DC when making the Rod of the Pact Keeper from DMG.

I've looked but, also, don't see a similar magic item.
 
This was worded poorly.

What are the tags for Spell attack and Spell Save DC?

This is what I have so far...:


doneif (field[gIsAttuned].value = 0)
doneif (field[gIsEquip].value = 0)


#enhancementbonus[hero.child[StandardDC], 1]
 
Last edited:
Look at the robe of the archmagi:

PreLevels 10000
Code:
      doneif (field[gIsEquip].value = 0)

      doneif (field[gIsAttuned].value = 0)

      if (hero.tagexpr[!Hero.EquipArmor] <> 0) then
        #baseac[15]
        endif
      #situational[hero.child[svAll],"Advantage on saving throws vs spells and other magical effects",field[thingname].text]
      foreach pick in hero from Spellcast
        eachpick.field[cSplAttack].value += 2
        eachpick.field[cSplSaveDC].value += 2
        nexteach
 
doneif (field[gIsEquip].value = 0)

doneif (field[gIsAttuned].value = 0)


foreach pick in hero from Spellcast
eachpick.field[cSplAttack].value += 1
eachpick.field[cSplSaveDC].value += 1
nexteach

That is what I needed!

Thanks, Aaron!
 
Guys, i could use some help to add a magic item too ?

Im trying to figure out how to configure a ring to add spell slot, but no success so far.
There´s anything that i could look into to find more information ?
 
Back
Top