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

I just got full akkhan how do i Set it to ALWAYS use Akkharats Champion?

kosynth

New Member
Joined
May 2, 2014
Messages
35
Reaction score
0
(I'm also wearing CDR gear to have perma Akkharats)


Even if their are no elites near by.
 
Last edited:
return CanCast(SNOPower.X1_Crusader_AkaratsChampion) && (TargetUtil.EliteOrTrashInRange(16f) || Player.CurrentHealthPct <= 0.25);
}

Changed to
return CanCast(SNOPower.X1_Crusader_AkaratsChampion) && (TargetUtil.EliteOrTrashInRange(16f) || Player.CurrentHealthPct <= 1.00);
}


He now casts When its off CD
 
return CanCast(SNOPower.X1_Crusader_AkaratsChampion) && (TargetUtil.EliteOrTrashInRange(16f) || Player.CurrentHealthPct <= 0.25);
}

Changed to
return CanCast(SNOPower.X1_Crusader_AkaratsChampion) && (TargetUtil.EliteOrTrashInRange(16f) || Player.CurrentHealthPct <= 1.00);
}


He now casts When its off CD
i am a BD noob. where should i put these code? Thanks.......
 
i am a BD noob. where should i put these code? Thanks.......

Demonbuddy > Plugins > Trinity > Combat > Abilities > CrusaderCombat.cs

Then you can just search for the first one, and then change it.
 
Back
Top