View Single Post
TheIronGolem
Senior Member
 
Join Date: Feb 2015
Posts: 676

Old January 9th, 2018, 08:00 PM
Huh, weird. I even tried setting the bootstrap condition to "1=2" to ensure the talent would never go live. Same error.

EDIT: Oops, didn't see this:
Quote:
Originally Posted by ShadowChemosh View Post
Just a stupid question you have nothing the "containerreq" section for the talent do you? Maybe for one last check can you post the full XML for this talent that is causing the issue?
Couldn't hurt! And nope, no containerreq. Come to think of it I'm not sure I've ever even used one of those.
Code:
  <thing id="sopTlCreGD" name="Greater Destroy" description="Increase the amount of damage dealt when you use your destroy ability to 1d6 + your caster level." compset="SoPTalent" summary="You do more damage with your destroy ability" uniqueness="useronce">
    <fieldval field="abValue" value="6"/>
    <fieldval field="abValue2" value="1"/>
    <usesource source="pDDSSoP"/>
    <tag group="SoPSphere" tag="Creat"/>
    <tag group="SoPTlClass" tag="Talent"/>
    <tag group="SoPBanDesc" tag="CreAlter"/>
    <tag group="Helper" tag="SpecUp"/>
    <eval phase="PostLevel" priority="5000"><![CDATA[
      ~ Stop if we're disabled
      doneif (tagis[Helper.SpcDisable] <> 0)

      ~ Find the Destroy ability
      perform hero.childfound[sopTlCreDs].setfocus
      doneif (state.isfocus = 0)

      ~ Replace die size, swap out CL progression tag
      focus.field[abValue2].value = maximum(focus.field[abValue2].value,field[abValue].value)
      perform focus.tagreplace[SoPAbV3Sc.1_2CL,SoPAbV3Sc.1_1CL]

      ~ Update description of Destroy
      #appenddesc[sopTlCreDs, "{b}" & field[thingname].text & ":{/b} Increase the amount of damage dealt when you use your destroy ability to 1d6 + your caster level."]]]></eval>
    </thing>

Last edited by TheIronGolem; January 9th, 2018 at 08:08 PM.
TheIronGolem is offline   #12 Reply With Quote