What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Trinity - Barbarian Class

Stay as a rend barb tank if I was you, not much of a difference. At least not in my experience.
 
Just curious the stats needed for a WW Barb? I have the money to buy new gear, just dunno what to get. Currently a rend barb tank.
Need ~35-45% unbuffed crit (higher is better), 1000-2000 loh... most of the rest of the stats work either way... crit dmg is highly valued for ww spec though.

Stay as a rend barb tank if I was you, not much of a difference. At least not in my experience.
I run WAY faster with WW barb.
 
I run 74k Dps with rend / shield etc, tried out ww and changed a ton of gear around and really the extra death an hour in the end didn't make any real difference to speed.

Perhaps I didn't upgrade his gear enough.. I doubt this tho.. 1000ar, 1900 loh, 52% crit. With 400% crit dmg.
 
ww is much faster, if you gear it right. i went from 12.7 ilvl63 rares dropped per hour to 17+ ilvl 63 rares per hour currently. switching from rend to ww. speed prob cut down by 15 mins~ at 103k dps unbuff dual wield.. maybe 1 death every 24 hrs.
 
до 29.09

===== Misc Statistics =====
Total tracking time: 22h 18m 24s
Total deaths: 1

===== Misc Statistics =====
Total tracking time: 8h 13m 2s
Total deaths: 0

===== Misc Statistics =====
Total tracking time: 11h 31m 8s
Total deaths: 2

===== Misc Statistics =====
Total tracking time: 2h 41m 11s
Total deaths: 0

...

после 29.09 и всего обновления

===== Misc Statistics =====
Total tracking time: 5h 14m 3s
Total deaths: 72 [13,76 per hour]
Total games (approx): 4 [0,76 per hour]

===== Misc Statistics =====
Total tracking time: 3h 35m 2s
Total deaths: 20 [5,58 per hour]
Total games (approx): 3 [0,84 per hour]

и т.п.


wtf ???
 
My barb spends all his goddamn Fury, which makes it damn near impossible to get WoTB up when he encounters elites?! Fury dump always is NOT ticked. Fury dump in WOTB is ticked.

Am I doing something wrong? My barb used to have 1dph with 1.4.8, now he died 3 times in 5 minutes when I upgraded to 1.5.2.2?
 
since i updated to latest trinity my two are dien as much as flies. dunno if its bad luck, but i will let them run for a while and will report
 
I run 74k Dps with rend / shield etc, tried out ww and changed a ton of gear around and really the extra death an hour in the end didn't make any real difference to speed.

Perhaps I didn't upgrade his gear enough.. I doubt this tho.. 1000ar, 1900 loh, 52% crit. With 400% crit dmg.

Your stats are all better than mine and I get <0.5 dph on average.... as low as 0.1 dph. You need to play around with the configuration of trinity. (PS I don't even use warcry)

Edit: PS: Avoidance is bad.
 
Last edited:
Your stats are all better than mine and I get <0.5 dph on average.... as low as 0.1 dph. You need to play around with the configuration of trinity. (PS I don't even use warcry)

Edit: PS: Avoidance is bad.

well give us some details..... Or is it some secret? Avoidance is bad so put avoidance at zero? play around with configuration like what the trash kill radius? You don't use warcry so what do you use??? how much resis do you have without warcry?
 
if u guys still have old versions of trinity, i am on 1.4.6.1..

try replacing the original ww code with this

// Sprint buff, if same suitable targets as elites, keep maintained for WW users
if (!bBuffsOnly && hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_Sprint) && !playerStatus.bIsIncapacitated &&
(
// Always keep up if we are whirlwinding
hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_Whirlwind) && GilesUseTimer(SNOPower.Barbarian_Sprint)
) &&
// If they have battle-rage, make sure it's up
(!hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_BattleRage) || (hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_BattleRage) && GilesHasBuff(SNOPower.Barbarian_BattleRage))) &&
// Don't already have sprint up
!GilesHasBuff(SNOPower.Barbarian_Sprint) &&
// The timer is out OR ignore the timer if we don't have sprint
(GilesUseTimer(SNOPower.Barbarian_Sprint) || !GilesHasBuff(SNOPower.Barbarian_Sprint)) &&
((playerStatus.dCurrentEnergy >= 40 && !playerStatus.bWaitingForReserveEnergy) || playerStatus.dCurrentEnergy >= iWaitingReservedAmount) && PowerManager.CanCast(SNOPower.Barbarian_Sprint))
{
return new GilesPower(SNOPower.Barbarian_Sprint, 0f, vNullLocation, iCurrentWorldID, -1, USE_COMBAT_ONLY, USE_SLOWLY);
}


this hasnt failed me yet. i always try the newest versions and end up going back to this version.. coz it works the best for me

if you try putting this code in latest versions however, the trinity wont compile.
 
if u guys still have old versions of trinity, i am on 1.4.6.1..

try replacing the original ww code with this

// Sprint buff, if same suitable targets as elites, keep maintained for WW users
if (!bBuffsOnly && hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_Sprint) && !playerStatus.bIsIncapacitated &&
(
// Always keep up if we are whirlwinding
hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_Whirlwind) && GilesUseTimer(SNOPower.Barbarian_Sprint)
) &&
// If they have battle-rage, make sure it's up
(!hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_BattleRage) || (hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_BattleRage) && GilesHasBuff(SNOPower.Barbarian_BattleRage))) &&
// Don't already have sprint up
!GilesHasBuff(SNOPower.Barbarian_Sprint) &&
// The timer is out OR ignore the timer if we don't have sprint
(GilesUseTimer(SNOPower.Barbarian_Sprint) || !GilesHasBuff(SNOPower.Barbarian_Sprint)) &&
((playerStatus.dCurrentEnergy >= 40 && !playerStatus.bWaitingForReserveEnergy) || playerStatus.dCurrentEnergy >= iWaitingReservedAmount) && PowerManager.CanCast(SNOPower.Barbarian_Sprint))
{
return new GilesPower(SNOPower.Barbarian_Sprint, 0f, vNullLocation, iCurrentWorldID, -1, USE_COMBAT_ONLY, USE_SLOWLY);
}


this hasnt failed me yet. i always try the newest versions and end up going back to this version.. coz it works the best for me

if you try putting this code in latest versions however, the trinity wont compile.

**EDIT** nvm I found it thanks bro will test it out.
 
Last edited:
well give us some details..... Or is it some secret? Avoidance is bad so put avoidance at zero? play around with configuration like what the trash kill radius? You don't use warcry so what do you use??? how much resis do you have without warcry?

Thing is that cdmichaelb comes here and he says he is the best.. and sh1t but unfortunantly he never posted a single gear part, he only says "bla bla bla i do runs verry fast , i catch 500+ items per hour and never die".. but thats it.. thats the kind of share that we do not need. so m8 i think you will have to figure out for your self or with help of really usefull ppl .
 
btw im playing with avoidance off.. i am not sure how avoidance is in 1.4.6.1


Cool that was my next question :)... THats what i do aswell but wasn't sure if it mattered or not.

Sorry for all the questions but what is your radius set at as well???

**EDIT** Just wanted to say thanks for the Tip PLZstop... The WW sprint works wonder like that and seems so much more effcient thans again man.
 
Last edited:
Thing is that cdmichaelb comes here and he says he is the best.. and sh1t but unfortunantly he never posted a single gear part, he only says "bla bla bla i do runs verry fast , i catch 500+ items per hour and never die".. but thats it.. thats the kind of share that we do not need. so m8 i think you will have to figure out for your self or with help of really usefull ppl .

yea i kinda noticed that others have asked to see his gear which has never been posted and the comment above was pretty much as if he said I have this great set up but you will have to figure it out yourself because im not sharing...
 
Cool that was my next question :)... THats what i do aswell but wasn't sure if it mattered or not.

Sorry for all the questions but what is your radius set at as well???

**EDIT** Just wanted to say thanks for the Tip PLZstop... The WW sprint works wonder like that and seems so much more effcient thans again man.

no problem. what radius?
 
Back
Top