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.
~ 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.