Adamrl
New Member
- Joined
- Feb 21, 2010
- Messages
- 299
- Reaction score
- 3
guess ima have to break down and tell (ask) the wife im getting a LK key.
o god. hit the deck?
guess ima have to break down and tell (ask) the wife im getting a LK key.
guess ima have to break down and tell (ask) the wife im getting a LK key.
xbatt i kinda have find a temporary solution to the issue (the combat stance bug happens way less frequently). first, set your pull distance to 60 or 70, i recommend 70. next, uncheck use mount (stops the dismount and loot issue).. i am in northrend and using a 68-73 profile so being on a mount really isnt essential for me right now. doing this has helped get the CC to work, but like i said it still does have its hang ups on occasion. i love the unholy rotation so much...insane amount of DPS. the CC is excellent..it actually could be HB causing this issue because i feel any targeting issues are HB related.
Jesus, I wish I had a damn DK
You're syaing this quite a lot; so I spent 10seconds researching ...
http://<a href="http://www.maxdps.c...tp://www.maxdps.com/deathknight/blood.php</a>http://www.maxdps.com/deathknight/blood.php
Here's the blood cycle, I'm pretty sure if you look at this and the talents you can piece together a plan; you should have done this yourself.
Seems there is a little problem with adds or single mobs sometimes.
It kills the first mob correctly(using skills) and when it goes to second mob or gets some adds it will not use any skills other then autoattack.
Log only shows #Combat Stance Enabled#
Rotation is blood
Everything regarding adds is unchecked.
2. A few lines below you should seepublic bool MoveToMelee()
. Replace 3.5 by 4.95 (~=wow max melee range)if (Me.CurrentTarget.Distance > 3.5)
is a bad idea for pvp fights.if ((ApproachDetector()) && (WaitForApproach)) return true;
Should be:if (!InBg() || (!Me.CurrentTarget.IsPlayer))
if (!InBg() && !Me.CurrentTarget.IsPlayer)