DH build -
Demon Hunter - Game Guide - Diablo III
boss - Ghom
changes i made to force it works with very smooth behavior with thiss boss
basically - range distance number changes, for all skills i use. file attached
Barb build -
Barbarian - Game Guide - Diablo III
boss - Ghom
earthquake range 6f by default, but ghom too large, and bot dont use it at all, must edit .cs file
also rrrix, can you review Call of the Ancient logic?
bot must do all prebuff skills like Battle rage, overpower with CC rune, or Revenge with the same rune, WOTB and others,
only this way CoTA can receive all benefits from this skills, if i am not mistaken in the game mechanics...
so for ghom i increased WOTB range to 30 in TVars, and decrease CoTa to 20
for Battle Rage i setup min energy for CoTA to 22 it TVars, and add this string to the CanCast par of the skill in BarbarianCombat.cs file
&&
Player.PrimaryResource >= V.F("Barbarian.CallOfTheAncients.MinFury");
to looks like this
Code:
public static bool CanCastCallOfTheAncients
{
get
{
return
!UseOOCBuff &&
!IsCurrentlyAvoiding &&
CanCast(SNOPower.Barbarian_CallOfTheAncients) &&
!Player.IsIncapacitated &&
(TargetUtil.EliteOrTrashInRange(V.F("Barbarian.CallOfTheAncients.MinEliteRange")) ||
TargetUtil.AnyMobsInRange(V.F("Barbarian.CallOfTheAncients.MinEliteRange"), 3) || TargetUtil.AnyElitesInRange(V.F("Barbarian.CallOfTheAncients.MinEliteRange"))) &&
Player.PrimaryResource >= V.F("Barbarian.CallOfTheAncients.MinFury");
}
}
but its not a good solution, because after using Battle Rage bot w8ting 22 fury to use CoTA, instead of cast coTA right now after BR