Faerie Fire Spam in caster form (guardian druid) Thanks for the great work guys. Enjoy Pure a lot. I have a small problem that maybe can be quickly fixed with a sanity check piece of code in the Guardian Druid routine. When I am in combat (guardian druid spec) but I switch out to caster form to do something, it will spam Faerie Fire until my toon is out of mana. I have to pause the bot so I can switch back into Bear sometimes. Thanks for any help.
Hey guys, playing around with some stuff and can't seem to figure out why it's not working. Essentially, trying to get it to cast execution sentence at my focus, or at my target if no target exists (hence the LUA) in the last 3 seconds of my ji-kun's feather proc, or if feather isn't proc'd, then cast it straight away at my focus, this is what I've come up with. Lua.RunMacroText("/cast [@focus, harm, nodead][]Execution Sentence", ret => TalentManager.HasTalent(18) && Me.HasAura(84963) && Me.HasAura(138759) && Spell.GetAuraTimeLeft(138759)<3), Lua.RunMacroText("/cast [@focus, harm, nodead][] Execution Sentence", ret => TalentManager.HasTalent(18) && Me.HasAura(84963) && !Me.HasAura(138759)), With just the first one it works fine, but when I add the second one in, it refuses to dps at all unless it's to keep inquisition up and then it will dps when my feather procs. I can't figure out why it's doing this and some help would be really appreciated. Cheers.
Hi wulf, I did but it doesn't change anything. Maybe it's because i'm running multiple wow sessions ?
This is from Oracles simulator tonight...Dynamic Healing Priority's. http://snag.gy/sd2Dt.jpg Just need to transplant it from the simulator to Oracle Live. I've come across a slight snag that I didnt account for that may take a little more time, prioritising spells with no mana cost (i.e: Paladin HolyPower spells, Monk Chi Spells, etc). Shouldn't take long though.
this happens multiple times in your log with different parts of HB, so dunno what happens there but please try this: - go to your hb folder - go to your routines folder - go to your PureRotation folder - delete Properties folder - start HB
Millz would it be possible to please add a on/off option to the shadow priest rotation to cast shadow orb generating abilities during Devouring Plague/shadow word insanity (mindblast/shadow word death)? It gives a higher uptime on Devouring Plague which is a great dps improvement (especially with the divine insight talent).
Hola!, I've been wondering for a while now, about which class would perform the best using Tyrael's + PR V2. So far, i've come up with the current "idea's" if you will.. ----------->Best In Their Role<----------- Tanks; Blood seems to perform really well, and imo. outperforms the most tanks currently.. Meele Dps; Enhance performs really well, but Dk's work quite well aswell.. Ranged; Mage seems to do more/better dps than Warlocks? i've only tested my warlock when my mage had a lower ilvl.. warlock at 470 ilvl vs my 470 ilvl mage.. and mage did roughly 80k dps, where the lock did about 70k dps.. so i can't really speak for "high-end" raiding. Healers; Since it's being completely rewrited, none can really say what's the best class for that. My money however, is probably on Resto Shaman or MW Monks. Any opinions on that?
however ALL my experiences are related to raiding, but on different gearlevel so i have to say that the dpsers and tanks do all perform good (with all i mean all i'm playing /testing/raiding with) Melee DPS: DK Frost DW, Paladin Retribution, Rogue Assassination Range DPS: Warlock Destruction Tank: DK Blood, Paladin Protection all of 'em are competitive to each raider on the same gearlevel (slightly higher gear values aren't too hard to beat so i'm able to outdps / outtank each class with myGearLevel + 9 as far as i could see in the last 3 months) The only issues i'm having is tanking without interacting with my toon both tanks are pullin not enough threat at the beginning, but this is not a big deal to press two or three buttons What i'm currently missing is the handling of boss mechanics, especially for tanking (like stacking blood shield for boss abilities) but this is a bit harder to code and since i'm able to play my tanks by hand, i'm able to hit this one or these two buttons within the boss fights where it is needed
all the chars i have atm, is between 470-480 ilvl, i though about trying them all and then post the results here.. but i guess it won't matter since .. well.. 480 is shit xD got a 510 sp, and a 487 mage :S i've talked with a few people here on the threads, most of them say ranged; Lock/Mage meele: Dk/Enhance Tanks; Most say they're doing quite nice overall.. (all of them) i just find my blood dk way more smooth than the others
Seems toi be working now, havnt tested it over a extended period but i will see monday. thanks a lot.
Thanks for the past reply. I tried like this, which I assume is what you meant. Lua.RunMacroText("/cast [@focus] Execution Sentence", ret =>SpellManager.CanCast("Execution Sentence") && TalentManager.HasTalent(18) && Me.HasAura(84963) && Me.HasAura(138759) && Spell.GetAuraTimeLeft(138759)<3), Lua.RunMacroText("/cast [@focus] Execution Sentence", ret =>SpellManager.CanCast("Execution Sentence") && TalentManager.HasTalent(18) && Me.HasAura(84963) && !Me.HasAura(138759)), HB gives me this error on start up now ": error CS0103: The name 'SpellManager' does not exist in the current context"
Added / Updated DW Frost *Blood Tap Support for DW *Soul Reaper Blood Tap Support (Set the % HP correctly if you have 4P bonus)
first of all ... why would u use a macro for that?^^ define and aquire the focus target at the top of the tree then u could this Code: Spell.Cast("Execution Sentence",on=> focusTarget,ret=> TalentManager.HasTalent(18) && focusTarget!=null && !Spell.SpellOnCooldown("Execution Sentence") && Me.HasAura(84963) && Me.HasAura(138759) && Spell.GetAuraTimeLeft(138759)<3), Spell.Cast("Execution Sentence",on=> focusTarget,ret=> TalentManager.HasTalent(18) && focusTarget!=null && !Spell.SpellOnCooldown("Execution Sentence") && !Me.HasAura(84963)),