WoW Bot Maps And Profiles
You could find what you look after there.
WoW Bot Maps And Profiles
You could find what you look after there.
Hello,
For auto copy Lightning Fist from Feng the Accursed (MSV). I have an idea, just wanna focus my OT and target Feng. When Feng channel Lightning Fist (target) on my OT (focus), then auto click ExtraActionButton1. So i have 2 questions:
1. How to get channel info on boss and run macro ExtraActionButton1 on focus target (OT)?
2. How to check my ExtraActionButton1 spell info so make sure this spell is Lightning Fist to auto cast on boss with Epicenter spell?
Example code:
PHP Code:
local spellLightningFists = GetSpellInfo(106371)
local channelSpell, _, _, _, _, endTime = UnitCastingInfo("boss1")
if channelSpell ~= nil and channelSpell == spellLightningFists then
RunMacroText("/click ExtraActionButton1")
return true
end
What happened to the healer love ?We used to have several awesome healing profile and now I think there is not even one ( paid or free ) that is up to date with things like Tsulong and the current bad encounter debuffs. Or is there one that I am missing ?
Not sure if this will work, used Xelpers code and redid it for Feng.
feel free to test it out.PHP Code:
for i=1,4 do
local bossCheck = "boss"..i
if UnitExists(bossCheck) then
local npcID = tonumber(UnitGUID(bossCheck):sub(6,10), 16)
local bossCasting,_,_,_,_,castEnd = UnitCastingInfo(bossCheck)
if npcID == 60009 then --Feng the Accursed
--grab spell names for abilities:
local lightningFists = GetSpellInfo(116157)
local epiCenter = GetSpellInfo(116018)
--intercept the spell if casting Lightning Fists
if bossCasting == lightningFists then
TargetUnit(focus)
--Press the ExtraActionButton (Nullification Barrier)
RunMacroText("/click ExtraActionButton1")
end
--interrupt Feng if casting Epicenter
if bossCasting == epiCenter then
TargetUnit(bosscheck)
--Press the ExtraActionButton (Lightning Fists)
RunMacroText("/click ExtraActionButton1")
end
only one is nova's resto drood , and also there is an edit of nova's holy pala to work with eternal flame mode
Hey everyone, I just uploaded a significantly updated/upgraded version of my pre-MoP retribution profile. If interested, please visit this thread.
Please leave constructive feedback/suggestions since I don't play ret at the moment :P
Cheers!
Dominium
Saw that and responded, thanks
As for 'going through' the profile - remember that there are quite a few abilities that I made while testing, so check the Rotation to make sure that if you wanna comment on something that you aren't commenting on some test or old ability :P
Anyone have the updated code for amber shaper, the current code errors and I don't know why.
My Svn - https://subversion.assembla.com/svn/averykeys-svn/
I was working out why my code doesn't interrupt the huge red guy, but haven't been able to actually get reshaped to test it (and we 1 shot it on heroic this week... soooo... maybe next week unless someone else comes up with a solution.)
Here is my current boss special ability, it at least interrupts the players own cast.
http://pastebin.com/raw.php?i=WBvBsKYs
Not sure if it will interrupt the boss or not. Didn't work for me last time I tried.
EDIT: BTW just updated it slightly, MIGHT work now.
Last edited by Xelper; 12-19-2012 at 09:51 PM.
any1 know why this is not working its just trying to cast it on ppl even if they dont have Pheromones.
PHP Code:
local Pheromones = UnitAura("mouseover", "Pheromones")
if UnitExists("mouseover") then
if Pheromones == "Pheromones" then
if PQR_SpellAvailable(6940) then
return true
end
end
end
yeah I did
EDIT: Okay I see why it doesn't work now. It returns true on boss1, so it never gets to boss2 because you have reshape life on you.
I'll post an updated PasteBin soon.Code:return true --prevent the rotation from executing while reshaped
EDIT: This one should work now: http://pastebin.com/raw.php?i=WBvBsKYs
In my testing Amber Monstrosity is always boss2, so it won't be a problem how I am doing it.
Last edited by Xelper; 12-19-2012 at 09:52 PM.