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

YourRaidingBuddy

Status
Not open for further replies.
for any DW dk out there that might be interested how this CR performs compared to TuanHA public release

Malkorok lfr ilvl 569

Tuan -> 245k
YourRaidingBuddy -> 306k
have you been able to rank much this tier? I'm having such a hard time on parses after the first few weeks.
 
playing enhance shaman.
interupt doesn't seem to work. havent changed the settings.
 
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
 
Hey Aleaw this combat routine in a single target boss fight is amazing!
First off my rogue is Combat spec but i use Sub for pvp.

I'm just having a few problems that probably have already been mentioned, if not just say the word and ill update a log file.

The problems I have come across that would actually affect normal usage is AOE doesn't seem to be kicking in and the CC doesn't seem to be even trying to interrupt mobs or player casting with or without hot keys being set.

The only other think really isn't a problem but more of a feature request is the ability to maybe save settings and or quick change setting buttons like I have seen in some other CC's
Like a pvp button that basically goes into stun mode, an AOE regular trash killing mode and then a boss normal go ham mode.

The pvp rotation text box also doesn't seem to have an effect on anything, I was thinking that would make the cc trigger all the stuns and kick but it doesn't.

But great work on the CC so far! I have never seen a more efficient single target rotation done as well. Some AOE and interrupts and this CC would be perfect.

AoE is coming soon(tm), I don't have PvP support currently on my routine. It's mainly for raiding sorry :(
Can I put in a suggestion to have Recuperate and Defensive CDs as different options to enable/disable? Also thanks for checking out my problem!

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.

playing enhance shaman.
interupt doesn't seem to work. havent changed the settings.

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

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

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)
 
have you been able to rank much this tier? I'm having such a hard time on parses after the first few weeks.
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.
 
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.


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
 
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")))
              );
        }
 
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
 
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

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
 
It looks like BM hunter is still just casting Cobra Shot when very high on focus.
 
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!
 
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
 
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.
 
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!
 
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!

Added Tier16 4 set check on the 90+focus arcane. Shouldn't be happening anymore
 
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?
 
Won't you please update your original post with what classes this supports? I skimmed through the 37 pages and caught glimpses of classes not mentioned on the 1st page.

what? it's on first page at the top?..
 
what? it's on first page at the top?..

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?
 
Status
Not open for further replies.
Back
Top