keganaraujo
New Member
- Joined
- Apr 30, 2014
- Messages
- 29
- Reaction score
- 0
hey all
id like to make my crusader use steed charge when he has 35% life left. i tried to modify the code but it doesnt seem to be working. can you guys help me out? this is how i have it
private static bool CanCastSteedCharge()
{
return CombatBase.CanCast(SNOPower.X1_Crusader_SteedCharge)
&& (TargetUtil.ClusterExists(CrusaderSettings.SteedChargeMinRange, 3) || TargetUtil.EliteOrTrashInRange(CrusaderSettings.SteedChargeMinRange) || Player.CurrentHealthPct <= 0.25);
id like to make my crusader use steed charge when he has 35% life left. i tried to modify the code but it doesnt seem to be working. can you guys help me out? this is how i have it
private static bool CanCastSteedCharge()
{
return CombatBase.CanCast(SNOPower.X1_Crusader_SteedCharge)
&& (TargetUtil.ClusterExists(CrusaderSettings.SteedChargeMinRange, 3) || TargetUtil.EliteOrTrashInRange(CrusaderSettings.SteedChargeMinRange) || Player.CurrentHealthPct <= 0.25);






