they are different, at lower lvls you can see the lvl that the boss is. say Asaad; in normal hes 84 but in heroic its ??. So by using the names of the bosses I can use this at lower lvls and at 85. I'm also going to post what I have later as it can be used for any spell that you want to use only on boss targets. Know that the list is a work in progress and some names may be off or missing.
Just had an idea for DK's and Druid's. I know I can't be the only one that seems it annoying to have to pause rotation to click on a battle rez during a raid. Any code that im not aware of for a mouse over click especially for Raise Ally?
Here's a goofy question that I can't seem to find an answer to, what should the Ability Check delay should the program be set to? Let's say if your home latency is 60ms and your world latency is 57ms, should the Ability Check Delay be around that number or lower/higher?
Merry Christmas PQRer's!
I'm working on a Balance Druid rotation, and I've found myself stuck with 1 spell in particular. Hoping one of you clever code people could help me out.
Simply put, in an ideal balance rotation, you cast a moonfire / sunfire whenever you switch eclipse stats, to gain the Natures Grace Buff (haste increase).
Now sunfire isnt an issue as it will pop it once it becomes available. However moonfire has stumped me. This is what the general layout of the code should be:
If Eclipse = Luner
and
No natures grace is present (which is most likely at an eclipse change)
then
cast moonfire to renew it
As far as I know the spell ID for Natures grace is 61346.
anyone have an idea of how that would look?
+rep to ya if you can figure it out.
something like
Code:--spellid: 0 --set target to mouseover --change the keydown to the one you'll like to use local inRange = 0 if UnitExists("mouseover") and UnitIsVisible("mouseover") then inRange = IsSpellInRange("Rasie Ally","mouseover") end if IsRightAltKeyDown() and UnitIsDeadOrGhost("mouseover") == 1 and inRange == 1 then CastSpellByName("Raise Ally") --or CastSpellByName("Rebirth") end
---------- Post added at 02:35 PM ---------- Previous post was at 02:17 PM ----------
Try this
Code:if UnitBuffID("player", 93431) ~= nil and UnitBuffID("player", 61346) == nil then CastSpellByName("Moonfire") --or return true. I'd set a delay on it about 100ms so your not spamming it. --if you do Castspellbyname then you can set SpellID: 0 --if you return true set SpellID to Moonfire: 8921 end
@Bossqwerty
i love your arms profil
i ranked top 20 @ ultra with it (did some very little changes)
Changes:
1. Bersi Rage on 2. position
2. Inner Rage on 3. position ( i have 2er t13)
and added action /use 10 for my Engineering Gloves
3. Heroic Strike (proc):
4. i added Bloodfury (orc bonus) and Apparatus to stack with Deadly Clamlocal BattleTrance1 = UnitBuffID("player", 12322)
local BattleTrance2 = UnitBuffID("player", 85741)
local BattleTrance3 = UnitBuffID("player", 85742)
local innerrage = UnitBuffID("player", 105860)
local rage = UnitPower("player")
if BattleTrance1 ~= ni or BattleTrance2 ~= ni or BattleTrance3 ~= ni or ( innerrage ~= ni and rage > 30) then
return true
end
+ Actionslocal rage = UnitPower("player")
local buff,_,_,TPCount = UnitAura("player","Titanic Power")
local CD = GetItemCooldown("68972")
if buff ~= nil then
if CD ~= true and TPCount == 5 and UnitHealth("target") >= 300000 then
return true
end
end
if rage < 20 and GetSpellCooldown(6673) > 10 then return true end
/cast Blood Fury(Racial)
/use 12
/use 13
@Bossqwerty and kingdps, nice job on these profiles.
@kingdps, would you mind to share your arms profile? I am a orc warrior too.
thanks
I have been using the DK profiles still not sure which are the best ones for a dk as im DW frost but they both do really nice dps
Im just asking from others who may have used alot of these profiles on different toons could they by any chance give me some advice on which toon i should level next as in to which profile is the best at dps
So im asking really which bangs out the most dps as from what i have seen raiding with LFR fire mages are the highest DPS output at the moment
Thanks
Techz
Edit.
Alrighty, heres my Balance Druid Rotation. As I said, it needs fine tuning. but the general jist of it gives you the ideal rotation.
Important: I have used existing profiles and adapted them for increased dps and a better rotation. The name on the basic rotation is Piep. Credit goes partly to him /her.
Heres the links:
Abilities:
http://www.megaupload.com/?d=PEGAQV2R
Rotation: (megaupload didnt like the rotation file for some reason. this 1 seems to work)
http://www.filehosting.org/file/deta..._Rotations.xml
enjoy![]()
Last edited by Cahonez; 12-25-2011 at 07:56 PM.