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

Trinity - Barbarian Class

Anything I can do to be more efficient? Running with Skorn + IK...i can't afford 2 good 1H yet and I only have 3% life steal and 0 LoH currently(too poor to buy good stuff yet). I'm also using hellfire + leoric's so missing a lot of stats there
116k unbuffed dps
about 500 RA unbuffed
46% crit

WW build with OP(crit rune)
Weapons master, ruthless, unforgiving

Full act 3 bigredrandom run on MP2
Total items dropped: 2513 [764.61 per hour]
Total tracking time: 3h 17m 11s
Total deaths: 8 [2.43 per hour]
Total games (approx): 1 [0.3 per hour]

about 26-28 mil xp/hour
between 55-60 paragon atm
 
Anything I can do to be more efficient? Running with Skorn + IK...i can't afford 2 good 1H yet and I only have 3% life steal and 0 LoH currently(too poor to buy good stuff yet). I'm also using hellfire + leoric's so missing a lot of stats there
116k unbuffed dps
about 500 RA unbuffed
46% crit

WW build with OP(crit rune)
Weapons master, ruthless, unforgiving

Full act 3 bigredrandom run on MP2
Total items dropped: 2513 [764.61 per hour]
Total tracking time: 3h 17m 11s
Total deaths: 8 [2.43 per hour]
Total games (approx): 1 [0.3 per hour]

about 26-28 mil xp/hour
between 55-60 paragon atm

your probably better off unequiping one of your xp rings (leorics) and putting up a better dps or sustain ring. your Dph seems high, shouldnt be over 1 especially at low MP
 
I have noticed a difference in the use of WoTB on elites from versions 1.6.3.1 to 1.6.3.4, and it is not good. The bot sometimes prefers to fight elites without using WoTB, and these elites can have annoying affixes such as prison and ice... I have sat and watched the bot, and even though the bot has enough fury to cast WoTB, it simply chooses not to.

Has anybody else noticed this issue and is there anything that can be done to make the bot choose WoTB more efficiently?

Regards.
 
I have the same issue occasionally...and it's even worse sometimes it chooses not to WW even with full fury against some elite packs...like it's saving fury to make sure WOTB can be used when it's CD comes. I have fury dump always on and use sprint etc OOC. so no clue what the deal is
 
Can anyone make a code for furious charge that would use it to go AWAY from elite packs only? I'm using it with merc assault on a weapon throw barb and I want to use furious charge to move AWAY from enemies in MELEE range. There's no point for a ranged barb to furious charge into packs or elites (which it does...and dies) and I have Sprint - Run with the wind so it would leave a tornado behind on the melee mobs chasing me. I want to use furious charge as an evasive peel against melee mobs/elites. This would really help me a lot if someone can please help me. Actually, all I really need to do is understand what the f*** this means:

// Furious Charge movement for a barb
if (!bFoundSpecialMovement && hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_FuriousCharge) &&
DateTime.Now.Subtract(dictAbilityLastUse[SNOPower.Barbarian_FuriousCharge]).TotalMilliseconds >= dictAbilityRepeatDelay[SNOPower.Barbarian_FuriousCharge] &&
PowerManager.CanCast(SNOPower.Barbarian_FuriousCharge))
{
WaitWhileAnimating(3, true);
ZetaDia.Me.UsePower(SNOPower.Barbarian_FuriousCharge, vCurrentDestination, iCurrentWorldID, -1);
dictAbilityLastUse[SNOPower.Barbarian_FuriousCharge] = DateTime.Now;
bFoundSpecialMovement = true;
}

and what this means:

// Furious charge
if (!bOOCBuff && !bCurrentlyAvoiding && hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_FuriousCharge) && !playerStatus.bIsRooted && !playerStatus.bIsIncapacitated &&
(iElitesWithinRange[RANGE_25] > 0 || iAnythingWithinRange[RANGE_15] > 3 || playerStatus.dCurrentHealthPct <= 0.7 || targetCurrent.fCentreDistance >= 15f || targetCurrent.bThisEliteRareUnique || targetCurrent.bThisTreasureGoblin || targetCurrent.bThisBoss) &&
GilesUseTimer(SNOPower.Barbarian_FuriousCharge) &&
PowerManager.CanCast(SNOPower.Barbarian_FuriousCharge))
{
float fExtraDistance;
if (targetCurrent.fCentreDistance <= 15)
fExtraDistance = 10;
else
fExtraDistance = (25 - targetCurrent.fCentreDistance);
if (fExtraDistance < 5f)
fExtraDistance = 5f;
Vector3 vNewTarget = MathEx.CalculatePointFrom(targetCurrent.vThisPosition, playerStatus.vCurrentPosition, targetCurrent.fCentreDistance + fExtraDistance);
return new GilesPower(SNOPower.Barbarian_FuriousCharge, 32f, vNewTarget, iCurrentWorldID, -1, 1, 2, USE_SLOWLY);
}

I don't understand what the "fExtraDistance" thing means and how can i manipulate, or erase it, to simply furious charge away? A little bit of help would be much appreciated!
 
Last edited:
I'm running a throw barb build similar to this: Barbarian - Game Guide - Diablo III

I'm finding that when I have "Fury Dump always" selected under giles/combat/barb tab, my barb tends to favor spamming Sprint/Marathon during boss fights. Is there a simple edit I can make that will make him spam Hammer of the Ancients as its fury dump instead? 400% damage from hammer definitely beats sprint when I'm standing still :)

Thanks,
 
I have the same issue occasionally...and it's even worse sometimes it chooses not to WW even with full fury against some elite packs...like it's saving fury to make sure WOTB can be used when it's CD comes. I have fury dump always on and use sprint etc OOC. so no clue what the deal is

Yes, there is also that issue which I forgot to mention. Hopefully there is a fix that somebody can post up. :)
 
anyone using the hammer build i post earlier Hammer Barb I finally got the barb to spam the Hammer of the Ancient like crazy. Was very simple and not sure why i did not think of it before.

From:
Code:
                    // Hammer of the ancients spam-attacks - never use if waiting for special
                    if (!bOOCBuff && !bCurrentlyAvoiding && hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_HammerOfTheAncients) && !playerStatus.bIsIncapacitated &&
                        playerStatus.dCurrentEnergy >= 20 &&
                       (
                        // More than 75 energy... *OR* 55 energy and target is high on health... 
                            playerStatus.dCurrentEnergy >= 20 || (playerStatus.dCurrentEnergy >= 55 && targetCurrent.iThisHitPoints >= 0.10) ||
                        // OR... target is elite/goblin/boss...
                            targetCurrent.bThisEliteRareUnique || targetCurrent.bThisTreasureGoblin || targetCurrent.bThisBoss ||
                        // OR... player WOTB is active... OR player is low on health...
                            GilesHasBuff(SNOPower.Barbarian_BattleRage) || playerStatus.dCurrentHealthPct <= 1
                       ) &&
                       GilesUseTimer(SNOPower.Barbarian_HammerOfTheAncients))
                    {
                        return new GilesPower(SNOPower.Barbarian_HammerOfTheAncients, 12f, vNullLocation, -1, targetCurrent.iThisACDGUID, 2, 2, SIGNATURE_SPAM);
                    }
To:
Code:
                    // Hammer of the ancients spam-attacks - never use if waiting for special
                    if (!bOOCBuff && !bCurrentlyAvoiding && hashPowerHotbarAbilities.Contains(SNOPower.Barbarian_HammerOfTheAncients) && !playerStatus.bIsIncapacitated &&
                        playerStatus.dCurrentEnergy >= 20 ||
                       GilesUseTimer(SNOPower.Barbarian_HammerOfTheAncients))
                    {
                        return new GilesPower(SNOPower.Barbarian_HammerOfTheAncients, 12f, vNullLocation, -1, targetCurrent.iThisACDGUID, 2, 2, SIGNATURE_SPAM);
                    }

by deleting those parameters in the middle, my barb has been spaming the crap out of hammer and makes for a happy barb :D
 
I sometimes find my barb bashing the crap out of a monster instead of using whirlwind even when he has full fury. Any fix?
 
My barb use 1 time bash and then use whirlwind and stop ajajja and then wait until some mob hit him and refuel a bit of fury.. and then again WW

how i need to do to my barb to bash some mobs and then use WW with FULL fury? D:

any fix?
 
any way I can make it use WOTB on CD and not wait for elites? I want to see if it speeds up my runs some on mp0
 
Last edited:
Hi im wondering if anyone can please help me out with the latest version of Giles

I was using I use gilestrinity 1.4.9.1 and its been working great. I updated to the latest however, and now my barb was not casting WOTB when attacking elites, but 1.4.9.1 version does, so i reverted back

Id prefer to use the latest version, but dont want to use it without WOTB
 
I just got bot today and have heard that this is a must have, I am still in the process of leveling my barb, how does the combat sequence work, are they preloaded or do i still have to find a profile to use with this?
 
How do i get my barb to focus on WW while mobs around, and to prioritize loot 2nd. so if mob in screen it goes for it and not the loot? i keep dying cause my barb stops attacking to loot then try reattacking all while being hit.
 
Is there anyway to change furious charge so that it only charges when there are mobs? Trying to take advantage of merciless assault and it's a shame when it keeps charging off cd and fails to have it up by the time i meet a pack
 
Hey guys!
i need an information, anyone can do MP5 with WW/Tornado build?? if it's possible, can i see your "stats" ?? Thx :D
 
Back
Top