• 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

New magic item

Kaleb

Well-known member
I would like to make a pair of bracers that give a dodge bons to ac instead of armor class below is the script for bracers of armor could someone tell me what to replace to get what I want.

~ If we're equipped, add an armor bonus
if (field[gIsEquip].value <> 0) then
hero.child[ArmorClass].field[tACArmor].value = maximum(hero.child[ArmorClass].field[tACArmor].value, 8)
endif

the bolded text are what I think need to be changed.
 
There is a feat from the core rulebook which gives you a dodge bonus to AC, perhaps you could look at that?
 
i would think you would need to replace on both sides of the "=" the tACArmor with tACDodge

haven't tested it though...

edit: or what he said...haha
 
i would think you would need to replace on both sides of the "=" the tACArmor with tACDodge

haven't tested it though...

edit: or what he said...haha

One warning, remember that Armor bonuses do not stack with each other, but Dodge bonuses do. So a simple replacement would probably not work exactly right.
 
Back
Top