Code:5.13 - Axe Toss Added - Immunity Checking Added - Added Soulburn -> Searing Pain for Destro and Demo. - Added Soulburn -> Drain Life for all 3 specs and put Drain Life higher in the rotations for all 3. - Felstorm level check added - Rain of Fire option added... don't use it and SoC at the same time - Fixed buffing in BG's... I think.
Added to first post.
Hey ski
My warlock keeps using Rain of Fire. also when single rotation.
Log attatched
There is something wrong with the CC.
I changed my specc to Demo and after I activate this specc and pushed the bot start button, it changed to the default profile.
This happens all the time since 5.13
Edit: The default profile spams Rain of Fire ...
Problem starts at 4:47 in log.
My Lock is targeting a mob that is moving around, and he is just walking back and forth not attacking. It looks like he is just trying to stay within a certain range, but he won't attack. He is stuck in this loop and won't get out of it without my intervention.
Doesnt Apply precombat buffs.
lvl 80 lock
What version? Is this after I fixed it in 513?
Its not a Gorloc Waddler by any chance is it? I don't know why, but every few weeks someone uses the CC near those Gorlocs and it just runs around like an asshole for no reason.
They are in the immediate area, but the issue happened whilst targeting a Marsh Caribou. Strange. =\
I have demon leap and all of the metamorphasis abilities checked true but it won't use them. He just morphs into Metamorphasis and does the normal spell rotation.
// Do we have the Metamorphosis buff?
if (Me.HasAura("Metamorphosis"))
{
// Start Auto-Attack for Shadow Cleave
if (Me.GotTarget && Me.CurrentTarget.Distance <= 10 && !Me.IsAutoAttacking)
{
drlog("{0}: Metamorphosis: Starting Auto-Attack", logPrefix);
LuaDo("StartAttack()");
}
// Immolation Aura: if any Add is within distance
if (!Me.HasAura("Immolation Aura") && AddList.FindAll(obj => (obj.Distance <= 10)).Count > 0 && Settings.UseImmolationAura && SpellManager.CanCast("Immolation Aura"))
{
drlog("{0}: Metamorphosis: Immolation Aura", logPrefix);
SpellManager.Cast("Immolation Aura");
WaitWhileCasting();
}
// Demon Leap: or move if not avaiable
if (AddList.FindAll(obj => (obj.Distance <= 5)).Count > 0 && Settings.UseDemonLeap && SpellManager.CanCast("Demon Leap"))
{
drlog("{0}: Metamorphosis: Demon Leap", logPrefix);
SpellManager.Cast("Demon Leap");
WaitWhileCasting();
}
// Shadow Cleave: if 2 or more Adds within distance
if (SpellManager.CanCast("Shadow Cleave") && AddList.FindAll(obj => (obj.Distance <= 10)).Count >= 2 && Settings.UseShadowCleave)
{
drlog("{0}: Metamorphosis: Shadow Cleave", logPrefix);
SpellManager.Cast("Shadow Cleave");
WaitWhileCasting();
}
}
I just noticed that about demon leap also, I cant wait till that and immolation aura works correctly![]()