Last edited by GRB; 01-16-2012 at 11:52 PM.
Want to change my Avenging Wrath and Zealotry to check if guardian of ancient kings has 20-25 seconds left, how would i do this?
Avenging
ZealotryCode:if IsSpellInRange("Crusader Strike", "target") ~= 1 then return false end if PQ_HolyPower== 3 or PQ_Buffs[PQ_DivinePurpose].hasBuff then return true end
Guardian ID 86150Code:if IsSpellInRange("Crusader Strike", "target") ~= 1 then return false end if PQ_HolyPower < 2 or PQ_Buffs[PQ_DivinePurpose].hasBuff or PQ_Buffs[PQ_AvengingWrath].hasBuff then return true end
This is for setting up the strength multiplier from GOAK before I pop my cool downs.
Just in case anyone wants to know why
Last edited by averykey; 01-17-2012 at 12:07 AM.
Code:local GoAK, _, _, _, _, _, time = UnitBuffID("player", 86150) time - GetTime() = time left on buff
---------- Post added at 05:23 AM ---------- Previous post was at 05:22 AM ----------
Not implemented yet, will add a check for that later today.
Haha, dunno how I managed that. I'll fix it for the next version.
I'm considering making a subtlety PvE profile, not just an average one but maximizing it to it's fullest potential. I can't do this alone because I don't know nearly about rogues and reading elitist jerks and such can only get me so far. If anyone is has a high amount of experience with the intricacies of a subtlety rogue send me a PM if you want to help.
Last edited by Bossqwerty; 01-17-2012 at 12:58 AM.
Is there an update to Sheurons Arc+Fire mage PvE profiles? I'm not seeing optimal DPS :l
onya resto shaman2 17012012.zip
i've done a rewrite of my resto shaman profile. performance should be much better.
includes event based decursing, still need to convert purge to being event based.
Does anyone have a good profile for cat pve?
Yes, and just search and i find it.
Last edited by Gabbz; 01-17-2012 at 03:58 PM.
can anybody help with shadow pvp prfile pls this code if for dispelling friendlys from cc the codes seems to work but dispells myself when they have the debuff
PQR_CustomTarget = "player"
local group = "party"
local members = GetNumPartyMembers()
local debuff = { 5782, 118, 61305, 28272, 61721, 61780, 28271, 51514 }
local targetdebuff = nil
local havedebuff = 0
if GetNumRaidMembers() > 0 then
group = "raid"
members = GetNumRaidMembers()
end
for i = 1, members, 1 do
local member = group..tostring(i)
if UnitInRange(member) and UnitIsFriend("player", member) and UnitIsDeadOrGhost(member) == nil then
for i,v in ipairs(debuff) do
if UnitDebuffID(member,v) then
havedebuff = 1
targetdebuff = PQR_CustomTarget
if havedebuff == 1 then
havedebuff = 0
return true
end
end
end
end
end