So on the old Trinity, were giles was in charge, i had made a modification to the rend code that made it spam rend regardless of what fury/or skills availiable so long as health was <=45%. With the new unified version my custom rend code addon no longer works. the code is as follows.
if (playerStatus.dCurrentHealthPct <= 0.45 && hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_Rend) && iAnythingWithenRange [RANGE_12] > 1)
return new GilesPower(SNOPower.Barbarian_Rend, 0f, playerStatus.vCurrentPosition, iCurrentWorldID, -1, 1, 0, SIGNATURE_SPAM);
, So i tryed using this in the new 1 and it makes it so DB no longer reads trinity. its not a huge addon, but it made the old giles almost never let me die with rend. so was wondering if any of the dev team could help me figure out how to make the above lines of code work with the new rend spam please.
if (playerStatus.dCurrentHealthPct <= 0.45 && hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_Rend) && iAnythingWithenRange [RANGE_12] > 1)
return new GilesPower(SNOPower.Barbarian_Rend, 0f, playerStatus.vCurrentPosition, iCurrentWorldID, -1, 1, 0, SIGNATURE_SPAM);
, So i tryed using this in the new 1 and it makes it so DB no longer reads trinity. its not a huge addon, but it made the old giles almost never let me die with rend. so was wondering if any of the dev team could help me figure out how to make the above lines of code work with the new rend spam please.