• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • YourRaidingBuddy

    Discussion in 'Archives' started by solo1420, Dec 31, 2013.

    Thread Status:
    Not open for further replies.
    1. wakkawakka22

      wakkawakka22 New Member

      Joined:
      Nov 11, 2011
      Messages:
      204
      Likes Received:
      2
      Trophy Points:
      0
      have you been able to rank much this tier? I'm having such a hard time on parses after the first few weeks.
       
    2. extremevil

      extremevil Member

      Joined:
      Sep 29, 2012
      Messages:
      67
      Likes Received:
      0
      Trophy Points:
      6
      playing enhance shaman.
      interupt doesn't seem to work. havent changed the settings.
       
    3. j.eremy

      j.eremy New Member

      Joined:
      Jan 23, 2014
      Messages:
      14
      Likes Received:
      0
      Trophy Points:
      0
      Oh one more thing with rogues, if you have tricks of the trade enabled and noone is in range it tries to cast it on yourself, which cannot be done and freezes up the cc, it just keeps trying to do that one thing
       
    4. Xcesius

      Xcesius Community Developer

      Joined:
      May 1, 2011
      Messages:
      2,050
      Likes Received:
      61
      Trophy Points:
      48
      AoE is coming soon(tm), I don't have PvP support currently on my routine. It's mainly for raiding sorry :(
      Sorry no, that won't be happening. If you want to use defensive cooldowns you enable them, if for some special reason I would recommend placing them at your hotkey bar and enable manual pause if it's an emergency. Please remember also to set your Talk-Key if you're using Ventrilo,Mumble or Teamspeak hotkey to speak.

      This PvE routine only interrupts in raids. It does not currently support World mobs.

      Fixed in latest update, added a distance check on the focustarget.




      Rogue Changes ::


      • Added hotkey to Rupture, no longer automated. Bind a key to use this (Kinda like SpecialKey, it works on auto, semi and hotkey mode)
      • Fixed up various of other things


      Monk Changes ::


      • Added auto-cancel for Storm,Earth and Fire (Found a hidden aura on Me.CurrentTarget, if the minion is attacking our target) default setting is false, if you need it enable it!
      • Added Personal Raid Warning for Storm,Earth and Fire hotkey, hold it down and you'll see it being enabled. (Remember to enable WoWChat Output Text)
       
    5. imdasandman

      imdasandman Active Member

      Joined:
      Feb 2, 2011
      Messages:
      1,207
      Likes Received:
      6
      Trophy Points:
      38
      When I had my dk the ilvl was 578.. I would get top 100 a couple top 50. You have to have gear to rank this tier plain and simple.
       
    6. Weird0

      Weird0 New Member

      Joined:
      Jul 24, 2012
      Messages:
      115
      Likes Received:
      0
      Trophy Points:
      0

      no since im not mainly dps, but as a blood i netted here and there even up to #10 for west
       
    7. wakkawakka22

      wakkawakka22 New Member

      Joined:
      Nov 11, 2011
      Messages:
      204
      Likes Received:
      2
      Trophy Points:
      0

      ya I'm sitting at 576 ... I've been disappointed with my rankings so far. Plus I get stuck on special duties during fights... Like the belt on siegecrafter. Hopefully I get a heroic ring soon :p
       
    8. Xcesius

      Xcesius Community Developer

      Joined:
      May 1, 2011
      Messages:
      2,050
      Likes Received:
      61
      Trophy Points:
      48
      Fixed boomkin on large hitboxes
       
    9. noise

      noise New Member

      Joined:
      Feb 3, 2013
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0
      Prot Paladin

      I changed it abit for my Prot Pally:
      SingleTarget
      Code:
              internal static Composite ProtectionSt()
              {
                  return new PrioritySelector(
                      
                      Spell.Cast("Shield of the Righteous", ret => Lua.HolyPower >= 5 || DivinePurposeProc || (Lua.HolyPower >= 3 && (G.DevastatingAbilities.Contains(Me.CurrentTarget.CurrentCastorChannelId())))),
                      Spell.Cast("Crusader Strike"),
                      Spell.Cast("Judgment", ret => SanctifiedWrathTalent && AvengingWrathBuff),
                      new Decorator(ret => CrusaderStrikeCooldownRemains && CrusaderStrikeUnder0, new ActionAlwaysSucceed()),
                      Spell.Cast("Judgment"),
                      Spell.Cast("Avenger's Shield"),
                      Spell.Cast("Execution Sentence"),
                      Spell.Cast("Holy Wrath"),
                      Spell.Cast("Consecration", ret => !TalentManager.HasGlyph("Consecration")),
                    Spell.Cast("Hammer of Wrath"),
                    Spell.CastOnGround("Consecration", ret => Me.CurrentTarget != null ? Me.CurrentTarget.Location : Me.Location, ret => TalentManager.HasGlyph("Consecration")),
                    Spell.CastOnGround("Light's Hammer", ret => LHLoc, ret => LHLoc!=WoWPoint.Empty && !ProtectionSettings.UseLightsHammerHotkey),
                    Spell.CastOnGround("Light's Hammer", ret => LHLoc, ret => LHLoc!=WoWPoint.Empty && ProtectionSettings.UseLightsHammerHotkey && KP.IsKeyAsyncDown(SettingsH.Instance.Tier4Choice))
                    );
      
              }
      SingleTarget Full DPS
      Code:
              internal static Composite ProtectionDPS()
              {
                  return new PrioritySelector(
                      
                      Spell.Cast("Shield of the Righteous", ret => Lua.HolyPower >= 5 || DivinePurposeProc || (Lua.HolyPower >= 3 && (G.DevastatingAbilities.Contains(Me.CurrentTarget.CurrentCastorChannelId())))),
                      Spell.Cast("Avenger's Shield"),
                      Spell.Cast("Crusader Strike"),
                      Spell.Cast("Judgment", ret => SanctifiedWrathTalent && AvengingWrathBuff),
                      new Decorator(ret => CrusaderStrikeCooldownRemains && CrusaderStrikeUnder0, new ActionAlwaysSucceed()),
                      Spell.Cast("Judgment"),
                      Spell.Cast("Holy Wrath"),
                      Spell.Cast("Consecration", ret => !TalentManager.HasGlyph("Consecration")),
                    Spell.Cast("Execution Sentence"),
                    Spell.Cast("Hammer of Wrath"),
                    Spell.Cast("Holy Prism"),
                    Spell.CastOnGround("Consecration", ret => Me.CurrentTarget != null ? Me.CurrentTarget.Location : Me.Location, ret => TalentManager.HasGlyph("Consecration")),
                    Spell.CastOnGround("Light's Hammer", ret => LHLoc, ret => LHLoc!=WoWPoint.Empty && !ProtectionSettings.UseLightsHammerHotkey),
                    Spell.CastOnGround("Light's Hammer", ret => LHLoc, ret => LHLoc!=WoWPoint.Empty && ProtectionSettings.UseLightsHammerHotkey && KP.IsKeyAsyncDown(SettingsH.Instance.Tier4Choice))
                    );
      
              }
      MultiTarget
      Code:
              internal static Composite ProtectionMt()
              {
                  return new PrioritySelector(
                      Spell.Cast("Shield of the Righteous", ret => Lua.HolyPower >= 5 || DivinePurposeProc || (Lua.HolyPower >= 3 && (G.DevastatingAbilities.Contains(Me.CurrentTarget.CurrentCastorChannelId())))),
                      Spell.Cast("Hammer of the Righteous"),
                      Spell.Cast("Judgment", ret => SanctifiedWrathTalent && AvengingWrathBuff),
                      Spell.Cast("Judgment"),
                      Spell.Cast("Avenger's Shield", ret => GrandCrusaderProc),
                      Spell.Cast("Consecration", ret => !TalentManager.HasGlyph("Consecration")),
                      Spell.Cast("Avenger's Shield"),
                      Spell.Cast("Execution Sentence"),
                      Spell.CastOnGround("Light's Hammer", ret => LHLoc, ret => LHLoc != WoWPoint.Empty && !ProtectionSettings.UseLightsHammerHotkey),
                      Spell.CastOnGround("Light's Hammer", ret => LHLoc, ret => LHLoc != WoWPoint.Empty && ProtectionSettings.UseLightsHammerHotkey && KP.IsKeyAsyncDown(SettingsH.Instance.Tier4Choice),
                      Spell.Cast("Holy Prism"),
                      Spell.Cast("Holy Wrath"),
                    Spell.Cast("Hammer of Wrath"),
                    Spell.CastOnGround("Consecration", ret => Me.CurrentTarget != null ? Me.CurrentTarget.Location : Me.Location, ret => TalentManager.HasGlyph("Consecration")))
                    );
              }
       
    10. bandage

      bandage New Member

      Joined:
      Mar 29, 2012
      Messages:
      26
      Likes Received:
      0
      Trophy Points:
      0
      on hotkey mode use cooldowns comes up in the middle of the screen and not in the chat window with display hotkeys on . Any way to get it just in the chat box and not in the middle? frost DK dw
       
    11. Xcesius

      Xcesius Community Developer

      Joined:
      May 1, 2011
      Messages:
      2,050
      Likes Received:
      61
      Trophy Points:
      48
      Yes, in the update tomorrow you will be able to choose which mode you want

      a) Personal Raid Warning with green (enabled) and red (disabled)
      b) printmsg into chatbox instead
       
    12. offensive

      offensive Member

      Joined:
      Aug 8, 2012
      Messages:
      179
      Likes Received:
      2
      Trophy Points:
      18
      It looks like BM hunter is still just casting Cobra Shot when very high on focus.
       
    13. Characture

      Characture New Member

      Joined:
      Jul 26, 2013
      Messages:
      147
      Likes Received:
      1
      Trophy Points:
      0
      Going to just say again how epic the enhance shaman CR is. Beating out hunters that are 7-10 ilvls higher.

      Does (should) the cr interrupt mc's on garrosh? I just realised I was doing it manually last week and not sure if intentional. No logs or anything, just a general question.

      Aside from that have the immerseus issues been fixed? Again, I'm on my phone so I don't have any logs, but the Hunter routine WAS getting stuck trying to trap immerseus (known issue) and the elemental shaman routine wasn't attacking immerseus at all last week, but it was attacking the adds during split phase. Finally, switching to AoE is very very slow unless I'm standing IN the mobs (might be a HB issue?) for elemental shaman. Aside from those two issues, elemental is performing much much better, looks like all cd issues resolved, although the CR does get locked up in a lightning bolt spamming frenzy occasionally for a short time and I can push 10-20k (7-14%) more DPS by hand

      Ok. That was supposed to be a short "ERMAGERD u r teh oarsum" post that ended up being one of those shitty worthless posts that point out problems without logs to back it up. Sorry!
       
    14. noise

      noise New Member

      Joined:
      Feb 3, 2013
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0
      Goin to code a Auto Taunt for SoO Bosses.
      Maybe some exp dev can over look it:

      Code:
                                              new Decorator(ret => SG.Instance.Protection.CheckBoss, ProtectionBoss()),
                                              ProtectionUtility(),
      Code:
      internal static bool FCB { get { return StyxWoW.Me.FocusedUnit.Auras["Corrosive Blast"].StackCount < 1; } }
      Code:
              #region Boss
              internal static Composite ProtectionBoss()
              {
                  return new PrioritySelector(
              Spell.Cast("Hand of Reckoning", ret => (FCB && Me.CurrentTarget.IsBoss)));
      
      
              }
              #endregion
       
    15. Xcesius

      Xcesius Community Developer

      Joined:
      May 1, 2011
      Messages:
      2,050
      Likes Received:
      61
      Trophy Points:
      48
      Everyone please update to latest as I've fixed 2 major issues

      1. GCD (You should no longer have bad fps overall)

      The GCD fix seems to have broken the ability to change classes overall. Please restart HB if you're going to change class, working on a solution.


      2. SpellDistance on Hunters,Elemental Shaman and Boomkin Druid.

      Rewrote Beastmastery, should be ok now.
       
    16. markymark303

      markymark303 New Member

      Joined:
      Feb 26, 2013
      Messages:
      39
      Likes Received:
      1
      Trophy Points:
      0
      Hi, with the SV hunter profile, can you please change it so that when we get LnL procs, it just spams explosive shot until proc is gone, even if focus capped. At the moment if we get LnL procs and if we are focus capped, profile is using arcane shot in between explosive shots, which is a loss of dps, even when focus capped. This makes for quite a big dps loss, especially with hunter 4 set.

      Thanks, love your work!
       
    17. Xcesius

      Xcesius Community Developer

      Joined:
      May 1, 2011
      Messages:
      2,050
      Likes Received:
      61
      Trophy Points:
      48
      Added Tier16 4 set check on the 90+focus arcane. Shouldn't be happening anymore
       
    18. Gintasama

      Gintasama Member

      Joined:
      Oct 16, 2013
      Messages:
      137
      Likes Received:
      0
      Trophy Points:
      16
      Won't you please update your original post with what classes this supports? I skimmed through the 37 pages of comments and caught glimpses of a class not mentioned on the 1st page, are there any more?
       
    19. Xcesius

      Xcesius Community Developer

      Joined:
      May 1, 2011
      Messages:
      2,050
      Likes Received:
      61
      Trophy Points:
      48
      what? it's on first page at the top?..
       
    20. Gintasama

      Gintasama Member

      Joined:
      Oct 16, 2013
      Messages:
      137
      Likes Received:
      0
      Trophy Points:
      16
      I know but I see talks of you updating the druid rotation and what not somewhere in the 37 pages of comments. Is that the only unmentioned class? Are there more?
       
    Thread Status:
    Not open for further replies.

    Share This Page