• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • PureRotation V2

    Discussion in 'Archives' started by Stormchasing, Apr 16, 2013.

    1. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      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
       
    2. lawrence131

      lawrence131 New Member

      Joined:
      Mar 16, 2014
      Messages:
      126
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    3. Cochise

      Cochise Member

      Joined:
      Jan 11, 2011
      Messages:
      88
      Likes Received:
      1
      Trophy Points:
      8
      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.
       
    4. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      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^^)
       
    5. Cochise

      Cochise Member

      Joined:
      Jan 11, 2011
      Messages:
      88
      Likes Received:
      1
      Trophy Points:
      8
      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.:)
       
    6. gbreivik

      gbreivik Member

      Joined:
      Mar 14, 2013
      Messages:
      162
      Likes Received:
      0
      Trophy Points:
      16
    7. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      well, maybe u should activate the usage of rapid fire in your settings? ;)
      from your log
       
    8. Degenz

      Degenz New Member

      Joined:
      Jun 9, 2012
      Messages:
      73
      Likes Received:
      0
      Trophy Points:
      0
      Elemental shaman isnt using unleash elements at all for DPS rotation
       
    9. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      Elemental shaman is using unleash elements, now it's up to u to prove that it isn't doin
       
    10. gbreivik

      gbreivik Member

      Joined:
      Mar 14, 2013
      Messages:
      162
      Likes Received:
      0
      Trophy Points:
      16

      HAHA woooooooooops :eek: :eek: :eek:
       
    11. Xalk

      Xalk Member

      Joined:
      Jul 27, 2012
      Messages:
      48
      Likes Received:
      0
      Trophy Points:
      6
      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.
       
    12. Alpeter100

      Alpeter100 New Member

      Joined:
      Aug 28, 2011
      Messages:
      35
      Likes Received:
      0
      Trophy Points:
      0
      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. ;-)
       
    13. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      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
       
    14. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      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)
       
    15. kuw84

      kuw84 New Member

      Joined:
      Dec 6, 2010
      Messages:
      267
      Likes Received:
      0
      Trophy Points:
      0
      Great job. Love this.
       
    16. Alpeter100

      Alpeter100 New Member

      Joined:
      Aug 28, 2011
      Messages:
      35
      Likes Received:
      0
      Trophy Points:
      0

      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.
       
    17. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      Mhm alright,so i should add the condition for eviscerate again :) will do so in some seconds
       
    18. Stormchasing

      Stormchasing Community Developer

      Joined:
      Jan 15, 2011
      Messages:
      4,029
      Likes Received:
      48
      Trophy Points:
      48
      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)
       
    19. shikarr

      shikarr New Member

      Joined:
      Oct 17, 2012
      Messages:
      8
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    20. Alpeter100

      Alpeter100 New Member

      Joined:
      Aug 28, 2011
      Messages:
      35
      Likes Received:
      0
      Trophy Points:
      0
      Yeah energy capping issue is back.

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

    Share This Page