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

PureRotation V2

anyone have feedback on how the Blood DK portion of PR2 performs in normal/heroic raiding? I've been using Tuanha's but it's too focused on dps and the Blood DK portion of it doesn't have much PVE/survival logic (DS not enough, uses runes on diseases even when you need a self heal or blood shield falls off, etc.), but raiding was never the intention of his routine.
Haven't Used blood in a Long Time,but all tanking is/was focussed on survivability over dps. The Routine tries to keep up bloodshield as much as possible and will use cooldowns over dps abilities
 
Haven't Used blood in a Long Time,but all tanking is/was focussed on survivability over dps. The Routine tries to keep up bloodshield as much as possible and will use cooldowns over dps abilities

Awesome thanks. exactly what i was looking for, basically the opposite of the Tuanha DPS focused one :) Will try this out next week's SOO clear and leave some feedback.
 
Is there anyway to make Explosive trap fire on every mob in PVE? I have set it aoe add count for explosive trap to 1. also set aoe count to 1. still on a target dummy it will not fire.
By the way you guys have the best dps of all the others hands down.
 
uhm target dummy is bad, i'm sure we have some decent trouble with some of the dummies (i never thought about fixing it, but i know in horde mop capital there were problems with the location on these dummies)
from code
Code:
new Decorator(ret => Me.CurrentTarget != null && PRSettings.Instance.UseAoEAbilities && _numNearByUnits >= HunterSettings.AoECount, HandleAoeCombat()),
means, execute aoe rotation when we have a target AND use aoe is set to true (in general settings) and nearby enemy units are equal or more than the set value (1 in your case)
and
Code:
        private static Composite HandleAoeCombat()
        {
            return new PrioritySelector
            (
                new Decorator(ret => Me.CurrentTarget == null, new ActionAlwaysSucceed()),
                Spell.CastHunterTrap("Explosive Trap", loc => Me.CurrentTarget.Location, ret => Me.CurrentTarget != null),
means
stop rotation when no target, if target is there -> trap on location of current target
so your settings are fine, and i would burn it down to the dummies, u should try a valid npc not a dummy (sorry for that, but was never a fan of testing on dummies^^)
 
I was kind of suspicious of it being the dummy. I have never been a fan either. they don't give a true real world test. Thanks for the answer. Keep up the great work.:)
 
Hello stormchasing,

thank you for this great CR. I love this.

I wanted to ask you, if it's possible to integrate the stopcasting logic from Oracle CR. This logic does work really nice. Unfortunately your CR doesn't stop if Thok casts Deafening-Screech (143343). It would put the cherry on the cake.
 
This is the best rogue CR out there.

However there is one issue. It energy caps. it simply does not spam sinister strike and eviscerate fast enough. The kingwow profile will spam the buttons faster, however it does not have as good of a rotation as purerotation.

I am a 581 ilevel rogue with 12/14 exp. All this profile needs is to spam buttons a little faster, and maybe not lag behind so much durring movement. At that point the profile will be good enough to parse top 100 on WOL for combat rogues. ;-)
 
This is the best rogue CR out there.

However there is one issue. It energy caps. it simply does not spam sinister strike and eviscerate fast enough. The kingwow profile will spam the buttons faster, however it does not have as good of a rotation as purerotation.

I am a 581 ilevel rogue with 12/14 exp. All this profile needs is to spam buttons a little faster, and maybe not lag behind so much durring movement. At that point the profile will be good enough to parse top 100 on WOL for combat rogues. ;-)

Update from SVN (file in first post is currently not updated)


Maybe fixed a bit of performance issues on casting (CanCast checks are performed a bit different than before)
removed a condition for eviscerate, to have it used a bit more
 
Hello stormchasing,

thank you for this great CR. I love this.

I wanted to ask you, if it's possible to integrate the stopcasting logic from Oracle CR. This logic does work really nice. Unfortunately your CR doesn't stop if Thok casts Deafening-Screech (143343). It would put the cherry on the cake.

I'll look at it later (maybe tomorrow), it won't have the same logic than Oracle, cause i'm not happy with the oracle logic :) (i tweaked it a bit within oracle, but had a better idea last week, to act a bit better than it does currently, without wasting time anymore)
 
Update from SVN (file in first post is currently not updated)


Maybe fixed a bit of performance issues on casting (CanCast checks are performed a bit different than before)
removed a condition for eviscerate, to have it used a bit more


PROBLEM! The profile is now spamming 1-3 point evicerates instead of 5 points. The bot seems to just be using it randomly.

the profile is 10x faster and i am no longer having energy capping issues.
 
Mhm alright,so i should add the condition for eviscerate again :) will do so in some seconds
 
Update to combat rogue:
readded combo-point condition to eviscerate (could affect the Energy-Capping again)

Update from SVN (attached file in first post, still not updated)
 
No complaints and no problems at present. Just a note to say great job on PUREROTATION. I have used it off and on continually for the past year and it has always done what I needed it to do.
 
Update to combat rogue:
readded combo-point condition to eviscerate (could affect the Energy-Capping again)

Update from SVN (attached file in first post, still not updated)

Yeah energy capping issue is back.

the new update to Wow-King rogue has fixed both of those issues.
 
Back
Top