Drizzt1990
New Member
- Joined
- Dec 22, 2011
- Messages
- 548
- Reaction score
- 3
hey wulf, any news on oracle?
he said he wasn't interrestedmaybe you can put this setting in some "to do" list and add this later?
Reboot your computer.
hey wulf, any news on oracle?
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 Storm,
Log is attached.
Side note: I reinstalled FRAMEWORK 4.5 and reinstalled honorbuddy, still the same issue.
Apparently, it says that the process is already running in another application, I've tried to kill all other processes but it still doesn't work. All other CRs I've tried so far were working.
Thank you.
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?
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
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 toonboth 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![]()
new log again plsI did it, same issue Storm...
Damn, I will never be able to use PureRotation :-(
new log again pls
disable the gloves and try again
Add SpellManager.CanCast("Execution Sentence") into your conditions.
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.
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)),