edited due to the fact i figured it out =D
Last edited by Jamsx1; 12-14-2011 at 10:34 PM.
I just combined Sheuron's Frost profile with Fire to make a pretty nice Fire PvP one. Just not sure how the armor is supposed to work. Right now just using Molten till I figure out what I am supposed to do.
Automatic Curse dispeler for arenas and bgs.
Replace the word "Curse" with "Magic" and voilá, you got Automatic Magic Dispeler.Code:function CheckCurse(unitid) local i = 1 local buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i) while buff do if bufftype == "Curse" then return true end i = i + 1; buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i) end end PQR_CustomTarget = "player" local group = "party" local members = GetNumPartyMembers() if GetNumRaidMembers() > 0 then group = "raid" members = GetNumRaidMembers() end for i = 1, members, 1 do local member = group..tostring(i) if UnitInRange(member) and UnitIsCharmed(member) == nil and UnitIsDeadOrGhost(member) == nil and PQR_IsOutOfSight(member) == false then if CheckCurse(member) then PQR_CustomTarget = member end end end if CheckCurse(PQR_CustomTarget) then return true end
I know I have asked this a week or so ago, problay just gets lost in the endless pages of this post. Is there anyone that can adjust the Onya elemental script from page 80 to use Unleash Elements everytime its off cooldown just before it hits Lava Burst?
Does someone just have a newer Elemental profile? That one does real good dps but just does not reach the maximum potential.
Thanks again to everyone who contributes to this project. Also GRB your PRQ-PU is sweet man, that is definitly the way to go to keep profiles up to date, everyone should get onboard with that.
Easy fix, this ll dispel everyting but Unstable Affliction
Code:function CheckMagic(unitid) local i = 1 local buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i) while buff do if bufftype == "Magic" then return true end i = i + 1; buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i) end end PQR_CustomTarget = "player" local group = "party" local members = GetNumPartyMembers() if GetNumRaidMembers() > 0 then group = "raid" members = GetNumRaidMembers() end for i = 1, members, 1 do local member = group..tostring(i) if UnitInRange(member) and UnitIsCharmed(member) == nil and UnitIsDeadOrGhost(member) == nil and PQR_IsOutOfSight(member) == false then if CheckMagic(member) then PQR_CustomTarget = member end end end if CheckMagic(PQR_CustomTarget) and UnitDebuffID(PQR_CustomTarget,30108) == nil then return true end
Crazy amount of HR spam (Even if a couple of low health targets are not in range).
And i didn't notice it using the cone type heal (Mind has gone blank on me)
*EDIT*
Oh if you ment the error in PQR, i was dumb and tried to save the source from your link by "right click, save link as"![]()
Last edited by Lofty; 12-15-2011 at 05:09 AM.
As Rogue PRQ wont attack the dragons before Ultraxion until they land, And does not attack the fangs and wings of deathwing during madness. Any way to fix this?
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
@Jamsx1
To what I understand, and this might have changed in 4.3. Using Unleash Elements while not moving is an actual DPS loss. I've edited Onya profile to if I'm moving use Unleash Elements.
If you'd like I can upload my edited profile to my SVN when I get home.