B Benchmark New Member Joined Nov 26, 2012 Messages 37 Reaction score 0 Jun 17, 2014 #1 How do I make the bot cast horrify the moment it is off cooldown?
L letsid New Member Joined Jun 17, 2012 Messages 29 Reaction score 0 Jun 17, 2014 #2 are you using a special aspect ? Go to trinity\combat\abilities\WitchDoctorCombat.cs Line 294 ff Code: if (CanCast(SNOPower.Witchdoctor_Horrify) && Player.CurrentHealthPct <= Trinity.PlayerEmergencyHealthPotionLimit && TargetUtil.AnyMobsInRange(horrifyRadius, 3)) { return new TrinityPower(SNOPower.Witchdoctor_Horrify); } change to: Code: if (CanCast(SNOPower.Witchdoctor_Horrify) && TargetUtil.AnyMobsInRange(horrifyRadius, 3)) { return new TrinityPower(SNOPower.Witchdoctor_Horrify); } When 3 mobs are in cast range of horrify and it is not on cooldown you cast it.
are you using a special aspect ? Go to trinity\combat\abilities\WitchDoctorCombat.cs Line 294 ff Code: if (CanCast(SNOPower.Witchdoctor_Horrify) && Player.CurrentHealthPct <= Trinity.PlayerEmergencyHealthPotionLimit && TargetUtil.AnyMobsInRange(horrifyRadius, 3)) { return new TrinityPower(SNOPower.Witchdoctor_Horrify); } change to: Code: if (CanCast(SNOPower.Witchdoctor_Horrify) && TargetUtil.AnyMobsInRange(horrifyRadius, 3)) { return new TrinityPower(SNOPower.Witchdoctor_Horrify); } When 3 mobs are in cast range of horrify and it is not on cooldown you cast it.