I don't recommend this profile, default hb profile works allot better.
this profile wipe party almost always,this profile works only for heirloom users, otherwise it just sux.
(tested on 3 druids 1-85, 1-60, 1-,70)
I don't recommend this profile, default hb profile works allot better.
this profile wipe party almost always,this profile works only for heirloom users, otherwise it just sux.
(tested on 3 druids 1-85, 1-60, 1-,70)
Something I just came across, I am running your CC at the moment on a 65 dr00d. It's not letting people die that's not the problem it's doing excellent. Only thing I notice is that it doesn't use Swiftmend. Do you have it implemented? And under what conditions?
Thanks for an answer.
if (Me.ActiveAuras.ContainsKey("Clearcasting") && hp > 70 && CC("Swiftmend"))
{
s = "Swiftmend";
}
else if (Me.ActiveAuras.ContainsKey("Clearcasting") && hp > 50 && CC("Regrowth"))
{
s = "Regrowth";
}
else if (Me.ActiveAuras.ContainsKey("Clearcasting") && hp < 50 && CC("Healing Touch"))
{
s = "Healing Touch";
}
else
{
if (Me.ActiveAuras.ContainsKey("Clearcasting") && !CC("Swiftmend"))
{
s = "regrowth";
}
}
if (s != null && CC(s, tar))
{
if (!C(s, tar))
{
Logging.Write("castfail move to " + tar);
}
if (!needCast)
{
}
return true;
}
double hp = tar.HealthPercent;
I added this myself to Hazard's code, and it seems to make swiftmend work a little more frequently.
Code:if (Me.ActiveAuras.ContainsKey("Clearcasting") && hp > 70 && CC("Swiftmend")) { s = "Swiftmend"; } else if (Me.ActiveAuras.ContainsKey("Clearcasting") && hp > 50 && CC("Regrowth")) { s = "Regrowth"; } else if (Me.ActiveAuras.ContainsKey("Clearcasting") && hp < 50 && CC("Healing Touch")) { s = "Healing Touch"; } else { if (Me.ActiveAuras.ContainsKey("Clearcasting") && !CC("Swiftmend")) { s = "regrowth"; } }
I added this right above the code below
Code:if (s != null && CC(s, tar)) { if (!C(s, tar)) { Logging.Write("castfail move to " + tar); } if (!needCast) { } return true; }
Also, while in there, hazard has swiftmend working at 45% health or less, so you can look for the code that starts it out, right below
and change the hp < 45 to 85 or 90 or something, and that should also improve the useage.Code:double hp = tar.HealthPercent;