FluffyDingo
Well-known member
Hey all, hopefully a simple question that I've just overlooked the solution to. The Robe of Arcane Heritage increases your effective Sorcerer levels by 4 for the purposes of determining what bloodline powers you have access to, and their strength. I'm trying to make this also apply to the secondary class Sorcerer. I have it increasing the power of the abilities that are unlocked just fine, but with the way it is coded to unlock them, I haven't been able to make that work.
My question is how can I increase my "total level" for when it goes through and checks to delete the AbReplace tags that disable the bloodline abilities?
This is wrong for the selection of each ability, since they are not unlocked yet, but the way I was thinking was to go through and delete the tags via the item itself (checking for 4 levels lower) during First 449, before the class does its own check at First 450.
My question is how can I increase my "total level" for when it goes through and checks to delete the AbReplace tags that disable the bloodline abilities?
Code:
doneif (field[gIsEquip].value = 0)
foreach pick in hero from BaseCustSp where "SpecSource.csSorcerer"
perform delete[AbReplace.cSorBl1st]
if (field[cTotalLev].value >= 3) then
perform delete[AbReplace.cSorBl3rd]
endif
if (field[cTotalLev].value >= 11) then
perform delete[AbReplace.cSorBl9th]
endif
if (field[cTotalLev].value >= 15) then
perform delete[AbReplace.cSorBl15th]
endif
nexteach
This is wrong for the selection of each ability, since they are not unlocked yet, but the way I was thinking was to go through and delete the tags via the item itself (checking for 4 levels lower) during First 449, before the class does its own check at First 450.