What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[The Weisch] Simple Dk - A simple but yet effective Frost Deakth Knight Routine

Update will be coming this week.

Just finished polishing 2 handed Frost Combat to not lock itself out.
Almost every setting is back in place.

I have removed the automatic mode though. As for a Raid Routine Hotkeys will do perfect.
Also later I'll provide a different way to toggle these from in game rather than using HB API to toggle them.

greetz

Weischbier

any idea when :p ?

and btw is it possible to still make the bot to NOT interrupt :p ? with the new changes
 
What am I doing wrong? I downloaded the zip file and it is illegible. Do I need to convert it in notepad or something? Here is a few lines of what it looks like when I open the file up. Any help would be greatly appreciated.

PK ? 5CSynapse made by Weischbier/PK ? 5C Synapse made by Weischbier/Base/PK??8Cu???2?4Synapse made by Weischbier/Base/DeathKnightSpells.cs?X?N#7?G?;X?E??sf?? ,,](?E???9I,&vd{?f?}?^??? =??q@?:B!???????(q)?????Tf?Ekkg??WQ|46?0D?ue?\?T?.,%????p*?o.?l,+??}?y??11'??]?????TP%/???b???,?4cP3???? ?1pe8?f,kC??8??7)?? ??f???y??3???n>?s????????????B7$]?+PT- w?|' ?0C?h7??Q?K.??p]?[[o@??Z[??bD?f?e??????:?`????M@OY???y?J?<?^8??4???hm|?? ??W??bZ?VfAz??>;;?0??CrR??X?|?g???? (??P?t? ??J?W?Q ?4k??czp?_????3?

x4KDmDc.png
 
aw still nothing new :( ?

Update is live.

No Unholy Combat available atm.
No Blood Combat available atm.

To come:
Unholy...unlikely...just a horrible spec in my opinion.
Blood.
Hotkey for T6 Talents.
Bug Fixes as they come.
 
Hmm dont know if it just me. but its actualy doing around 10-20k less dps than with your old profile :o i could hold on it on 210k "5 mins test"
now i can only like 190-195 :s

btw are you going to make a 1H aswell :p ?
 
Hmm dont know if it just me. but its actualy doing around 10-20k less dps than with your old profile :o i could hold on it on 210k "5 mins test"
now i can only like 190-195 :s

btw are you going to make a 1H aswell :p ?

1H is always in. Just wear two 1h weapons.
 
Aight well was just looking in the settings and only saw two :p so had to ask ^_^
 
I'll throw an update in the net time (could be weeks), not sure when as I'm currently stuck at the hospital again...(annoyed face).

Update will include hotkeys for Tier 6 abilities, some fixes and tweaks and OH MY FREAKING GOSH the spastic Blood Tap usage is nearly gone, I still need to figure out a way to create my own rune class. HBs build is good but there's something that bothers me with detection!

greetz from the hospital

Weischbier
 
Hi Weisch!

I'm not really familiar with your routines but from all the excitement in thread, really look forward to testing this out and hopefully finding a copy of the old Synapse one too :D.

Welcome back and prayers are with you in regard to your health!

~J
 
weisch I made the changes for your dw frost... about to try on a dummy but here is my edit of it to comply with the new fad of mastersimple which can be found here >>>>>Destiny Softworks: Mastersimple vs. Mastercomplicated


Code:
private static Composite CreateDualWieldCombatBehavior()        {
            return new PrioritySelector(
                new Decorator(ret => WhatRotationStyle(IsAutomaticMode), new PrioritySelector(
                    Cast(DeathKnightSpells.UnholyBlight, ret => CooldownTimeLeft(DeathKnightSpells.Outbreak).TotalSeconds < 55 && (!HasAura(_toontarget, DeathKnightSpells.BloodPlague, true) || !HasAura(_toontarget, DeathKnightSpells.FrostFever, true))),
                    Cast(DeathKnightSpells.Pestilence, ret => CanPester()),
                    Cast(DeathKnightSpells.HowlingBlast),
                    CastSensetive(DeathKnightSpells.BloodTap, ret => _toon, ret => StackCount(_toon, DeathKnightSpells.BloodCharge) >= 10 && SomeRunesDepleted()),
                    Cast(DeathKnightSpells.FrostStrike, ret => _toon.CurrentRunicPower >= 76),
                    CastOnGround(DeathKnightSpells.DeathAndDecay, ret => _toontarget.Location, ret => _toon.UnholyRuneCount >= 1),
                    Cast(DeathKnightSpells.PlagueStrike, ret => _toon.UnholyRuneCount == 2),
                    Cast(DeathKnightSpells.FrostStrike),
                    Cast(DeathKnightSpells.HornOfWinter, ret => _toon),
                    Cast(DeathKnightSpells.PlagueLeech, ret => _toon.UnholyRuneCount == 1),
                    Cast(DeathKnightSpells.PlagueStrike, ret => _toon.UnholyRuneCount == 1),
                    new ActionAlwaysSucceed())), // This is more a safety spot here. If we fail to cast PL but are still in aoe mode: return to the top!
                Cast(DeathKnightSpells.FrostStrike, ret => _toon.CurrentRunicPower >= 88 || HasAura(_toon, DeathKnightSpells.KillingMachine, true), "because we have more or equal to 89 Runic Power or a Killing Machine proc"),
                Cast(DeathKnightSpells.HowlingBlast, ret => _toon.FrostRuneCount == 2 || _toon.DeathRuneCount == 2, "because we have extensive runes"),
                //Cast(DeathKnightSpells.SoulReaper, ret => _toontarget.HealthPercent <= 35, "because our target is lower or equal to 35 healthpercent"),
                Cast(DeathKnightSpells.PlagueStrike, ret => !HasAura(_toontarget, DeathKnightSpells.BloodPlague, true) || GetAuraTimeLeft(_toontarget, DeathKnightSpells.BloodPlague) < 1000, "because our target has no Blood Plague"),
                Cast(DeathKnightSpells.HowlingBlast, ret => HasAura(_toon, DeathKnightSpells.FreezingFog, true), "because we have a Rime proc"),
                Cast(DeathKnightSpells.FrostStrike, ret => _toon.CurrentRunicPower >= 76, "because we have more or equal to 77 Runic Power"),
                Cast(DeathKnightSpells.HowlingBlast),
                CastSensetive(DeathKnightSpells.BloodTap, ret => _toon, ret => StackCount(_toon, DeathKnightSpells.BloodCharge) >= 8 && SomeRunesDepleted()),
                Cast(DeathKnightSpells.FrostStrike, ret => _toon.CurrentRunicPower >= 40, "because we have mor or equal to 40 Runic Power"),
                Cast(DeathKnightSpells.HornOfWinter, ret => _toon, "because nothing else to do"),
                CastOnGround(DeathKnightSpells.DeathAndDecay, ret => _toontarget.Location, ret => _toon.UnholyRuneCount >= 0 ),
                Cast(DeathKnightSpells.PlagueLeech, "because nothing left to do"));
        }

Pastebin link >>>>> dw frost rev.2 - Pastebin.com


test results... 55mil dmg done 222k dps single traget/// 55mil dps done 395k dps multi target
toon: 557 ilvl leg cloak+meta, 567 and 561 weapon, skeers tailsimen trink and shado pan


Anyone know how to add this to Synapse?
 
Greetings everyone.
Been sometime when I last was online here. Reason is: I switched to another "bot". And it's not PQR.
I won't continue updating Synapse here. If you wish to use or reuse this you can do this as long as you credit me.

Anyways, this new bot is awesome and fast. The rotation works flawless and I like it.

greetz

Weischbier
 
Greetings everyone.
Been sometime when I last was online here. Reason is: I switched to another "bot". And it's not PQR.
I won't continue updating Synapse here. If you wish to use or reuse this you can do this as long as you credit me.

Anyways, this new bot is awesome and fast. The rotation works flawless and I like it.

greetz

Weischbier
You can not just type that and not tell us what bot that is.. :)
PM me please.

Sent from my SM-P600 using TheBuddyForum mobile app
 
Greetings everyone.
Been sometime when I last was online here. Reason is: I switched to another "bot". And it's not PQR.
I won't continue updating Synapse here. If you wish to use or reuse this you can do this as long as you credit me.

Anyways, this new bot is awesome and fast. The rotation works flawless and I like it.

greetz

Weischbier

Sorry to let you down Weisc.. PQR at its current state aint faster than HB and there is no active support atm on DK rotations that are outdated. Been using both Bots few years now so i speak with experience. Stick to HB until/if upcoming pqr 3.0 is better.

Cheers.
 
Sorry to let you down Weisc.. PQR at its current state aint faster than HB and there is no active support atm on DK rotations that are outdated. Been using both Bots few years now so i speak with experience. Stick to HB until/if upcoming pqr 3.0 is better.

Cheers.

Even that won't be faster ;)
 
Sorry to let you down Weisc.. PQR at its current state aint faster than HB and there is no active support atm on DK rotations that are outdated. Been using both Bots few years now so i speak with experience. Stick to HB until/if upcoming pqr 3.0 is better.

Cheers.

Did you missed the part with "it's not PQR"?^^
 
Back
Top