View Single Post
Aaron
Senior Member
 
Join Date: Oct 2011
Posts: 6,793

Old February 6th, 2018, 11:12 AM
Quote:
Originally Posted by Pooptickler View Post
I'm saying the file is using both to calculate Hex DCs.
The issue is with the eval script on the archetype:

PostAttributes 10000
Code:
      ~ Find any hexes taken by this class which have DCs, and add CON
      foreach pick in hero from BaseCustSp where "StandardDC.aINT & CustTaken.cHelpWit"
        eachpick.field[abDC].value += hero.child[aCON].field[aBonus].value
        eachpick.field[abDuration].value += hero.child[aCON].field[aBonus].value
        nexteach
There isn't an easy way to change over the duration calculations, but the way it should go to switch DC calc would be to move the script earlier and change the StandardDC tag. Like so:

PostLevels 10000
Code:
      ~ Find any hexes taken by this class which have DCs, and switch them to using CON
      foreach pick in hero from BaseCustSp where "StandardDC.aINT & CustTaken.cHelpWit"
        perform eachpick.tagreplace[StandardDC.aINT,StandardDC.aCON]
        nexteach
Aaron is offline   #18 Reply With Quote