Hey, can someone help me and find the error?
Its a Disc PVP Profile
Profiles.rar
Hey, can someone help me and find the error?
Its a Disc PVP Profile
Profiles.rar
Wow, that was hard to fix.Code:local friend = UnitIsFriend("player","focus") local mytarget = 100 * UnitHealth("focus") / UnitHealthMax("focus") local _,_,_,LB,_,_,LBt = UnitBuffID("focus", 33763) local treeoflife = UnitBuffID("player",33891) if LB == nil then return true end if LB ~= nil and LB < 3 then return true end if friend ~= nil and LB ~= nil and LBt - GetTime() < 4 then return true end
how to fix this?
buff = dont dispell
buffs= dispell
and the same for purgeCode:buff = { 96328, 96325, 96326, 92876, 92877, 92878, 86788, 30108 } buffs = { 49203, 47476, 339, 3355, 34490, 19185, 50245, 4167, 44572, 83047, 118, 82691, 18469, 33395, 122, 83302, 55080, 120, 31589, 853, 20066, 31935, 605, 64044, 8122, 15487, 64695, 63685, 5782, 5484, 6358, 30283, 6789, 31117, 18498 } local candispel = 1 for i,v in ipairs(buff) do if UnitDebuffID(targettoheal,v) then candispel = nil end end local i = 1 for i,v in ipairs(buffs) do if bufftype == "Magic" and duration > 2 and candispel and UnitIsFriend("player",targettoheal) then CastSpellByID(527,targettoheal) end i = i + 1; buff,_,_,bufftype,duration = UnitDebuff(targettoheal, i) end
Code:buff = { 43242, 92965, 93631, 76634, 88186, 76307, 31884, 2825, 32182, 80353, 1719, 17, 33763, 96802, 6940 } for i,v in ipairs(buff) do if bufftype == "Magic" and duration > 2 and UnitIsEnemy("player","target") then CastSpellByID(527,"target") end
For the Lifebloom problem I tryed something like this, its not working tho but maybe some 1 better at this can help out.
local mytarget = 100 * UnitHealth("focus") / UnitHealthMax("focus")
local _,_,_,LB,_,_,LBt = UnitBuffID("focus", 33763)
if mytarget < 95 and LB ~= nil and LBt - GetTime() < 4 then RunMacroText("/cast [target=focus] Lifebloom") end
Alright guys.
A mate of mine is trying to use this on his rogue. He has tried both assasin profiles that have been posted here, but every time he selects his process there is nothing in the dropdown to choose from, yet it works on his other toons fine.
Anyone got any ideas?
he needs to go into the profiles Folder and change ROUGE_Rotation.xml to ROUGE_Rotations.xml
I would like to have a list of 4 names of players I raid with and cast Focus Magic on one of them. Priority should be in the order the names are given and it should be checked if the target is alive and in range. I am trying to get this done but I am struggling. Some help would be awesome, thanks.
Try as I might i can't find the holy paladin profile in this thread. Can anyone point me in the right direction?
edit:
ok here it is ([BETA] PQRotation - an automated ability priority queue.)
Last edited by onya; 09-11-2011 at 05:14 PM.
Anyone still working on perfecting a pvp DK profile? If you could even get just the interrupt profile to work for it I could use the pve profile to do bgs with.
What interrupt profile are you talking about?
Zenmex created a very nice Unholy Arena Profile that people enjoyed. I created a decent PVP Unholy profile I enjoyed. and if you just have interrupt all checked you can interrupt everything that u can. Have you tried any of the profiles i've mentioned above in bg's yet?
For all those looking for LifeBloom heres what i had been using.
Note:
-Have the tank on focus
-It will always keep your focus target with 3 lifebloom and will only buff when times run till 1sec then buff again.
Spell: Lifebloom
ID:33763
Target: Focus
Delay: 500
Its a very basic LB, but works like a charm for keep 3 stacks always on tank, and for replineshment.Code:local lifebloom, _, _, _, _, _, lbtimer = UnitBuffID("focus", 33763, "player") if lifebloom ~= nil then if lbtimer - GetTime() < 2 then return true end else return true end