The pure Frenzy dps one is actually ganking Ghom T3 fairly quickly. However, I can't seem to kill him fast enough and die before my potion has recharged in T4.
I'm curious if you're using a poison-reversal item of some kind? (you take poison dmg -> healed) etc?
Also, I'm noticing that Avalanche is not being used that often when in RMB? I had to manually force him to use it on one run.
Right now getting about 52mill more xp per hour than Tier2 Rift runs so I can't complain

. I just wish I did more dmg or had more hp/healing to do Tier4

. I'm thinking my lack of Unity rings is the issue, but i just can't find them no many how many days I farm Kulle

!
ps: I had to edit Battle Rage's ability code in trinity, else he kept spamming it and wasting fury. Below is the code I had to change:
Code:
public static bool CanCastBattleRage
{
get
{
int timeSinceUse = SpellHistory.TimeSinceUse(SNOPower.Barbarian_BattleRage).Milliseconds;
if (timeSinceUse >= 110000 || !SpellHistory.HasUsedSpell(SNOPower.Barbarian_BattleRage))
{
return !UseOOCBuff && !Player.IsIncapacitated && CanCast(SNOPower.Barbarian_BattleRage, CanCastFlags.NoTimer) &&
(
!GetHasBuff(SNOPower.Barbarian_BattleRage) ||
(Settings.Combat.Barbarian.FuryDumpWOTB && Player.PrimaryResourcePct >= V.F("Barbarian.WOTB.FuryDumpMin") && GetHasBuff(SNOPower.Barbarian_WrathOfTheBerserker)) ||
Settings.Combat.Barbarian.FuryDumpAlways && Player.PrimaryResourcePct >= V.F("Barbarian.WOTB.FuryDumpMin")
) &&
Player.PrimaryResource >= V.F("Barbarian.BattleRage.MinFury");
}
else
{
return false;
}
}
}
pss: Just timed it and T3 Ghom dies within 2seconds short of WOTB dropping, so 18second kills with reasonable gear...nothing amazing though.
psss: Heh, tons of edits!! Anyways, according to DB i'm making 46games per hour, each game giving 5.65mill exp. So i'm only getting 259.9mill per game from the quest alone. Haven't seen what I'm getting per ghom kill itself, but I imagine not anywhere near a million? So at max i'm doing what....300mill per hour? Meh

! I need to be able to do T4 Ghom within this timelimit to come close to Tier3 Hell Rifting I think xD!