I would love to use this but have no idea how to install it. When I start HB it asks if I want to use it. I select it and hit yes. I begin auto attacking but no rotation ever occurs. Help me out?
[06:46:39.498 D] Cleared POI - Reason Exception in Root.Tick()
[06:46:39.498 D] Cleared POI
[06:46:39.532 D] System.Collections.Generic.KeyNotFoundException: The specified spell could not be found: Unholy Blight
at Styx.CommonBot.SpellCollection.get_Item(String index)
at DeepsDK.DeepsDK.Combat() in Routines\DeepsDK\DeepsDK.cs:line 275
at Styx.CommonBot.Routines.CombatRoutine.(Object )
at Styx.TreeSharp.Action.RunAction(Object context)
at Styx.TreeSharp.Action..()
at Styx.TreeSharp.Composite.Tick(Object context)
at Styx.TreeSharp.PrioritySelector..()
at Styx.TreeSharp.Composite.Tick(Object context)
at RaidBot.RaidBot.LockSelector.Tick(Object context) in Bots\RaidBot\RaidBot.cs:line 85
at Styx.TreeSharp.Decorator..()
at Styx.TreeSharp.Composite.Tick(Object context)
at Styx.TreeSharp.PrioritySelector..()
at Styx.TreeSharp.Composite.Tick(Object context)
at Styx.TreeSharp.PrioritySelector..()
at Styx.TreeSharp.Composite.Tick(Object context)
at Styx.CommonBot.TreeRoot.()
Can someone upload the modded version with the fixed 2h rotation? please
I lol'd, that's not even near perfect. You will use too much frost strikes regarding your "currentrunicpower", you can't get a perfect two-hand rotation due to HB detecting Runicpower too slow
But I guess that works for some :>
I changed the rotation for 2hand to match the rotation suggested at icy-veins.com and be dps on the raid-dummy increased from 73k to 80k...
Its now a little bit simpler then your orignal:
#region 2H Rotation
public void TwoHanderRotation()
{
//howling_blast,if=buff.rime.react
if (Me.HasAura("Freezing Fog") && Me.CurrentTarget.Distance < 30d)
{
CastSpell("Howling Blast");
}
//obliterate,if=(Killing Machine Proc || Won't cap runic power)
if (Me.CurrentTarget.IsWithinMeleeRange && (Me.HasAura("Killing Machine") || Me.CurrentRunicPower <= 76))
{
CastSpell("Obliterate");
}
//frost_strike
CastSpell(FrostStrike);
//horn_of_winter
CastSpell("Horn of Winter");
//empower_rune_weapon
CastSpell("Empower Rune Weapon");
}
#endregion
For those of you getting just auto swings, it's because you're not using a profile...download or create a blank profile and load it. Onto the CC, with Lazyraider I hit 59.2k on the raid dummy, using the modded version above. That's without trinket/gloves etc..., CLU, 61.4k that's WITH trinket, rolling blood fury and springs. I used the Raid dummy in Two Moons, so I was getting Howling Blast cleaves one dummy. I based this over 10mil damage done. I had one attempt where it bursted 102k on the dummy, but quickly fell...once racials and engie uses are implemented, this is going to be pretty good.
Then you're doing something wrong, after running multiple tests, this CC(plugging the modified code in) has come out on top for me, you HAVE to run a View attachment Blank Profile.xml.Something seriously broke this routineBeen using Singular for a while but decided to come back and try this routine again and I'm not sure what happened.
[09:03:41.973 D] System.Collections.Generic.KeyNotFoundException: The specified spell could not be found: Unholy Blight
at Styx.CommonBot.SpellCollection.get_Item(String index)
Code:[09:03:41.973 D] System.Collections.Generic.KeyNotFoundException: The specified spell could not be found: Unholy Blight at Styx.CommonBot.SpellCollection.get_Item(String index)
I didn't see Unholy Blight in your known spell list.![]()
It's compatible with the following active talents: Unholy Blight, Plague Leech and Blood Tap.
Yea, I use PL as well. It works great for me, that's what I don't get...are you using a blank profile with it?That's because I was using Plague Leech as it has proven to be a dps increase over Unholy Blight. And I couldn't find anywhere in your post with the modified code or any post after saying that Unholy Blight was exclusive to this CC. Because once I switched PL for UB, it started working properly. If I overlooked any statement saying that you need to use UB for this CC, then that's on me.
Yea, I use PL as well. It works great for me, that's what I don't get...are you using a blank profile with it?
Oh yeah...can you do anything about the delay in using DnD when engaging multiple mobs? Singular has the same problem popping DnD after already killing three or four of the seven mobs I engaged when it should have opened with DnD or at least after Outbreak or Howling Blast was cast. I'm thinking it's probably an HB issue but here's hoping it could be fixed in the CC.
//Death and Decay if both Unholy Runes are up
if (Me.CurrentTarget.Distance < 30d && Me.UnholyRuneCount == 2)
{
CastSpellOnGround("Death and Decay");
}
//Death Strike if below 85 percent HP
if (Me.CurrentTarget.IsWithinMeleeRange && (Me.UnholyRuneCount == 1 || Me.FrostRuneCount == 1 || Me.HealthPercent <= 85))
{
CastSpell("Death Strike");
}