this program is so sweet
But when im on my war and I wanna use heroic leap, I cant coz it SPAMS attacks.. Any way to go around that?
Edit REP to you +5
try a GetSpellCooldown check and tell it to set to false if on CD or put a hp check before it casts. not the best way to do it but a workaround.
Anyone happen to be working on a Enhance Shaman PvP or PvE profile?
Hello.
added LoH to rotation, but i discovered when i connect bot to pvp/archeo with that awsome prog it doin much better dmg then bot setup, so started using this with pvpbot(while archeo)
but my question is:
what should i add to that lua code to not get stuck trying cast f.e. Divine Shield while Forbearance is active.
Code:sForbearance=UnitBuffID("player",25771) local unithealth = 100 * UnitHealth("player") / UnitHealthMax("player") if sForbearance ..................... then <-- no idea how to fill it return ???false??? if unithealth < 20 then return true end end
Where is the Resto Druid rotation cant find it.
healing really shouldn't be a rotation per say as encounters change. not saying its imposable just that it wouldn't be very effective to heal a group/raid with this program.
as foryou need to read this Lua 5.1 Reference Manual xelper pointed me to it and it was a great help.Code:sForbearance=UnitBuffID("player",25771) local unithealth = 100 * UnitHealth("player") / UnitHealthMax("player") if sForbearance ..................... then <-- no idea how to fill it return ???false??? if unithealth < 20 then return true end end
and you need to read down to 2.5.3 as well. as for your code you are returning false before your nested if then statement meaning it would skip it.
try this and let me know if this works for you.
Code:sForbearance=UnitBuffID("player",25771) local unithealth = 100 * UnitHealth("player") / UnitHealthMax("player") if unithealth <= 20 then if sForbearance == nil then return true end end
Anny 1 know a script to target lowest health raid member not dead or out of range ?
I have been watching this thread for about 2 weeks now and today downloaded it and tried it on my DK, Boomkin and Hunter. So I took the time to register. This is an amazing program I love the potential to make bad good and good amazing. I do have one question or 2.
What would be the feasibility of coming up with a way to integrate this with something like an Honorbuddy Custom class profile? I mean to have PQRotation override any combat rotations in a profile and still allow any healing in a profile? Right now I am playing with my druid running Honorbuddy on a farming profile while running PQRotation for the combat. It works amazingly well when the druid and faster combat than any Honorbuddy profile I have tried but when it comes to healing Honorbuddy and PQRotation disagree on what should happen and it will stand still and die. Just a thought I was having at the time.
ThanksI support this
does anyone have a good warlock pvp profile?
Can someone post the SV hunter profile as i cant find it. i can only find bits of it.
I'm working on hunter profiles now. they are rough but get the job done. just in the tweaking part of the set up to get them polished.
Any chance this will be ported for mac users?