Cokx, or anyone else..On the cleanse cc ability I do not see where it would cleanse a fear. If I am overlooking something let me know but during rbg's I seem to get a lot of complaints that I am not cleansing fears. Also, I seem to have some pauses during rotation where I am not moving or healing. Sometimes I feel like I need to be moving to start the rotation up again. I am in the middle on Cokx's and Bubba's PvP Holy Paladin profiles atm.
Code:function CheckMagic(unitid) local i = 1 local buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i) while buff do if bufftype == "Magic" or bufftype == "Poison" or bufftype == "Disease" then return true end i = i + 1; buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i) end end PQR_CustomTarget = "player" PQR_CustomTargetTarget = "playertarget" 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) local memberstarget = group..tostring(i).."target" if UnitInRange(member) and UnitIsDeadOrGhost(member) == nil and PQR_IsOutOfSight(member) == false then if CheckMagic(member) then PQR_CustomTarget = member end if CheckMagic(member) then PQR_CustomTargetTarget = memberstarget end end end if (UnitDebuffID(PQR_CustomTarget,49203) ~= nil or UnitDebuffID(PQR_CustomTarget,19386) ~= nil or UnitDebuffID(PQR_CustomTarget,3355) ~= nil or UnitDebuffID(PQR_CustomTarget,44572) ~= nil or UnitDebuffID(PQR_CustomTarget,118) ~= nil or UnitDebuffID(PQR_CustomTarget,82691) ~= nil or UnitDebuffID(PQR_CustomTarget,31661) ~= nil or UnitDebuffID(PQR_CustomTarget,853) ~= nil or UnitDebuffID(PQR_CustomTarget,20066) ~= nil or UnitDebuffID(PQR_CustomTarget,10326) ~= nil or UnitDebuffID(PQR_CustomTarget,605) ~= nil or UnitDebuffID(PQR_CustomTarget,64044) ~= nil or UnitDebuffID(PQR_CustomTarget,8122) ~= nil or UnitDebuffID(PQR_CustomTarget,9484) ~= nil or UnitDebuffID(PQR_CustomTarget,15487) ~= nil or UnitDebuffID(PQR_CustomTarget,6789) ~= nil or UnitDebuffID(PQR_CustomTarget,5782) ~= nil or UnitDebuffID(PQR_CustomTarget,5484) ~= nil or UnitDebuffID(PQR_CustomTarget,6358) ~= nil or UnitDebuffID(PQR_CustomTarget,30283) ~= nil or UnitDebuffID(PQR_CustomTarget,24259) ~= nil or UnitDebuffID(PQR_CustomTarget,31117) ~= nil or UnitDebuffID(PQR_CustomTarget,18498) ~= nil or UnitDebuffID(PQR_CustomTarget,33395) ~= nil or UnitDebuffID(PQR_CustomTarget,122) ~= nil ) and CheckMagic(PQR_CustomTarget) and UnitDebuffID(PQR_CustomTarget,30108) == nil then return true end
Fear is under the Magic Debuff type, so it should be dispelled just fine, however there is one thing you must ALWAYS consider.... when there is a warlock who is fearing.... there is probably dots flying around. and if the target has Unstable Affliction this will not dispel them ever.... so if they are complaining about fears not being dispelled and they have UA on them.... u can kindly tell them to wait patiently.... or my personal favorite in normal bg's.... "F*ck off chicken little or u get no more heals"
however if it's not the case that they have fear on them but not UA.... then that is indeed an issue we must fix..... any more input from ur side?
Quoted from EJ:
So your right, will change the code and post the new profile.Code:Zealotry Zealotry provides a special circumstance. During Zealotry all CS earn 3 HP. Your rotation will become CS, TV, Filler, or CS, Filler, TV, as we still use 2 fillers between CS. With current values for HoW and Exo they may be used over a CS or TV during Zealotry (see priorities above). Continue to follow your core priority sequence in and out of cooldowns. Zealotry does not alter your priority sequence, it just gives you more TV to socket in there. Try to avoid use of Zealotry during AOE-cleave phases. Divine Storm does not produce 3 HP, so you would lose the benefit of this CD or lose the benefit of proper AOE attacks against available targets.
Ok new changes:
-Will use HoW and Exo with zealotry
-Now only will use AW when Zealotry is up, so it will always use both of them at same time.
-LEFT ALT now pauses the rotation
-Right Control will HoF
-Now will use Zea and AW even if target have less then 5% hp
-GoaK not used if target have less then 5%, since its a 5m CD.
-Some other changes were made.
Download:
http://www.mediafire.com/download.php?g00tb1olfxggd71
Last edited by GRB; 01-18-2012 at 03:19 PM.
for this particular thing maybe.... because i still haven't made a CC only cleanse that takes priority lol.....
my reg cleanse and cokx's reg cleanse are the same, before i quit i started making a cleanse that was like his so without feeling a hiny of sympathy i copied his code letter for letter and implemented it into mine (naming the cleanse after him)
i can throw a CC cleanse together real quick after this raid is over
Anyone having FPS issues with my RET_PALLY profile?
gonna test it on LFR tonite ... maybe i had bad procs that try
Holy Paladin - I'm using Lofty's hpally profile, the profile heals other people without any problem but it never heals myself. WHy? here's the code:
I don't know who coded that orginally, so credits go to him/her.Code:if UnitExists("target") and UnitIsDead("target") == nil and UnitIsFriend("player", "target") and UnitCanCooperate("player","target") then PQR_CustomTarget = "target" PQR_CustomTargetHP = 100 * UnitHealth("target") / UnitHealthMax("target") else PQR_CustomTarget = "player" PQR_CustomTargetHP = 100 * UnitHealth("player") / UnitHealthMax("player") local group = "party" local members = GetNumPartyMembers() lowhpmembers = 0 local lowest = 100 if GetNumRaidMembers() > 0 then group = "raid" members = GetNumRaidMembers() end for i = 1, members, 1 do local member = group..tostring(i) local memberhp = 100 * UnitHealth(member) / UnitHealthMax(member) if UnitInRange(member) and UnitIsFriend("player", member) and UnitIsDeadOrGhost(member) == nil then if UnitGroupRolesAssigned(member) == "TANK" then memberhp = memberhp - 1 end if UnitThreatSituation(member) == 3 then memberhp = memberhp - 3 end if UnitBuffID(member, 53563) ~= nil then memberhp = memberhp + 7 end if memberhp < 70 then lowhpmembers = lowhpmembers +1 end if memberhp < lowest then PQR_CustomTarget = member lowest = memberhp PQR_CustomTargetHP = 100 * UnitHealth(PQR_CustomTarget) / UnitHealthMax(PQR_CustomTarget) end end end end
I'v tried replacing the above code with Sheuron's automatic targetting code but it didn't work for me (it does nothing). Here's his code:
Also, is it possible to not to heal a person that has the Deep Corruption debuff? This is Heroic Yor'sahj from DS. I can't heal ppl that have the debuff or they die =/Code:if not xeroninit then function SpecialAggro(t) local mob = { "Training Dummy", "Raider's Training Dummy", "Twisted Spirit", "Amani´shi Hatcher", "Hakkar's Chains", "Exposed Head of Magmaw", "Battleground Demolisher", "Ozumat", "Right Foot", "Left Foot", "Icy Tomb", "Risen Ghoul", "Mana Void", "Burning Tendons", "Wing Tentacle", "Arm Tentacle", "Twilight Assault Drake", "Goriona", "Ice Tomb" } for _,v in ipairs(mob) do if UnitName(t) == v then return true end end end function ImmuneTarget(t) local buff = { 642, 45438, 31224, 23920, 33786, 19263, 97417, 97977, 102915, 100686, 105784, 74938 } for _,v in ipairs(buff) do if UnitBuffID(t,v) then return true end end end function HoldCooldown(cd) if GetMinimapZoneText() == "Deathwing" and UnitName("target") ~= "Burning Tendons" and cd >= 1 then return true end if UnitName("target") == "Warlord Zon'ozz" and not UnitDebuffID("target",104031) and cd >= 3 then return true end if UnitName("boss1") == "Alysrazor" and not UnitDebuffID("boss1",99432) and cd >= 3 then return true end end print("Sheuron initialized, ver: \124cFFFFE6402012.01.05") xeroninit = true end if IsLeftAltKeyDown() or IsMounted() or SpellIsTargeting() or UnitBuffID("player",80169) or UnitBuffID("player",87959) or UnitChannelInfo("player") then return true end
What is your ilvl/weapon?
Reason I ask this is a few days ago an ilvl 387 yet pally was on here saying he was only hitting 25-27k fps on the dummies.
Here is what I am gonna say. Me as a frost dk with an ilvl of 398 and 2xHM moarcock's I do sustained about 31-32k dps on the raiding dummy but with all buffs and debuffs on ultrax I do 41k in a 10man setting. 47k in lfr.
So dummies are OK for seeing improvements within the rotation but it should not be what should be reported for numbers.
Go out, que for lfr, if you parse that shit like I do to see a better breakdown of what proc'd and when. I send profile makers links of my armory and my logs so they can see a different data set yo analyze.
Anyways gl to y'all but I want to see numbers from lfr not dummies imo
Sent from my SAMSUNG-SGH-I997 using Tapatalk
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
Pull decursing out of your rotation for that specific fight.
Correction I was thinking of hm zonozz IMO. But what you van do is see what spells holy pallies can use on the purple oozes that does not add stacks and setup it as an alternative rotation you would switch to in that combo.
Sent from my SAMSUNG-SGH-I997 using Tapatalk
Last edited by imdasandman; 01-18-2012 at 05:30 PM.
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
i would saw for the Deep Corruption part.... heal it yourself? i mean it's not that hard lol i can throw something into the targeting system if it's a necessity.... however for the holy paladin profile healing issue.... have u even tried my profile? mine used to have an issue like that, but with the updates it seems to have worked itself out