bombastic
New Member
- Joined
- Jun 18, 2012
- Messages
- 430
- Reaction score
- 3
Maybe bombastic or ksmaze can look into that. If not, I'll try a hand at it later
ianonyk said:Could you make it rend more often. If there is only 1 elite. He doesn't use rend at all
Change from:
Code:
(iAnythingWithinRange[RANGE_6] > 0 || targetCurrent.fRadiusDistance <= 6f) &&
To:
Code:
(iAnythingWithinRange[RANGE_6] >= 1) &&
EDIT: --more rend tweaks--
Change:
Code:
(playerStatus.dCurrentEnergyPct >= 0.65 && DateTime.Now.Subtract(dictAbilityLastUse[SNOPower.Barbarian_Rend]).TotalMilliseconds >= 3500)
To:
Code:
((playerStatus.dCurrentEnergyPct >= 0.65 || iElitesWithinRange[RANGE_12] >= 1) && DateTime.Now.Subtract(dictAbilityLastUse[SNOPower.Barbarian_Rend]).TotalMilliseconds >= 3500)
And change:
Code:
int iPreDelay = 3;
int iPostDelay = 3;
To:
Code:
int iPreDelay = 0;
int iPostDelay = 1;
See if this helps.
Last edited: