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

Call of ancients immortal king

ASTOLFOYFELA

Member
Joined
May 16, 2014
Messages
35
Reaction score
1
Hi all, im doing t6 with my barb and i need help, using ik my call of ancients last till the barbarians die, só, many times i se only one alive, u know where im getting,
how do i change the profile for my barbarian use call of ancients everytime an ancient dies, or every 2 minutes will be fine..
any clue?
 
Hi all, im doing t6 with my barb and i need help, using ik my call of ancients last till the barbarians die, só, many times i se only one alive, u know where im getting,
how do i change the profile for my barbarian use call of ancients everytime an ancient dies, or every 2 minutes will be fine..
any clue?

any solving for this problem? have the same issue...

Thanks
 
/Trinity/combat/abilities/barbariancombat.cs :
public static bool CanUseCallOfTheAncients
{
get
{
return !UseOOCBuff &&
!IsCurrentlyAvoiding &&
CanCast(SNOPower.Barbarian_CallOfTheAncients) &&
!Player.IsIncapacitated &&
(CombatBase.TimeSincePowerUse(SNOPower.Barbarian_CallOfTheAncients) > 120000 ||
(!GetHasBuff(SNOPower.Barbarian_CallOfTheAncients) && (Sets.ImmortalKingsCall.IsFullyEquipped ||
CurrentTarget.IsEliteRareUnique ||
TargetUtil.EliteOrTrashInRange(V.F("Barbarian.CallOfTheAncients.MinEliteRange")) ||
TargetUtil.AnyMobsInRange(V.F("Barbarian.CallOfTheAncients.MinEliteRange"), 3) ||
TargetUtil.AnyElitesInRange(V.F("Barbarian.CallOfTheAncients.MinEliteRange"))));
}
}
 
Can this also monitor if the Ancients are at <70% health to also use the Call?
 
Back
Top