Thank you very much! It works great
edit: New profile out!
Added a prot profile
Double jeopardy works, thanks valma!
bunch of little tweaks to ret
added more spells to hof/emancipate
https://dl.dropbox.com/u/44039495/PALADIN.rar
Thank you very much! It works great
edit: New profile out!
Added a prot profile
Double jeopardy works, thanks valma!
bunch of little tweaks to ret
added more spells to hof/emancipate
https://dl.dropbox.com/u/44039495/PALADIN.rar
Last edited by averykey; 12-13-2012 at 12:12 PM.
My Svn - https://subversion.assembla.com/svn/averykeys-svn/
Averykey u could do something like i do with my farming profile, and only perform the range check if the target does not == Elegon or Garalon
something like this
this way if you are fighting Elegon or Garalon it will not preform the range check but otherwise it will. srry if my coding is a little off, just started to learn LUA a week ago =DPHP Code:
if UnitName("target") == ("Elegon") or UnitName("target") == ("Garalon") then
return true
elseif IsSpellInRange() then
return true
else
return false
end
How is Double Jeopardy utilized? Does it Judge off of your Focus frame? If that's the case, then it hasn't really been working for me (whereas prior to this update it would occasionally Judge my focused target).
edit: looked over code and it's not judging off neither my focus or mouseover.
Last edited by Mitrexe; 12-14-2012 at 08:29 AM.
Hello.. Sorry if you already replied to this in one of the past 13 pages but the profile isnt working for me.. it just casts the buffs but doesnt attack at all.
am I missing something here or do i need to change something in the settings?
Thanx for the help.
Still no real resolution for Mass Exo under your rotation due to how glyph abilities work?
Also slightly confused here ES never goes off unless CD's are up was that intentionally setup to do that?
Last edited by js1974; 12-14-2012 at 04:03 PM.
hey avery, not sure if its intended but when hammer of wrath is "available" but still on cooldown, CS and judgement dont execute. and my toon just waits there autoattacking till Hammer is off cooldown.
is it possible to make it not cast WoG as it wastes HP in raids?
What talents am suppose to be using?
hey averykey , love the profile. but is there a interrupt profile that would work best for paladin?? Also would be nice if can cleanse poison.
Update for ret/prot
https://dl.dropbox.com/u/44039495/PALADIN.rar
double jeopardy isn't working anymore valma =/ , not sure why. Haven't changed any of the code.
mentally, my private messaging is broken if you are trying to reach me that way, please post the code here.
bunch of fixes to prot
fixed a weird bug on bosses where the profile would freeze up
added hammer of wrath to prot
changed manual to check if in combat, face pulled a few bosses using alt. Lol
changed execution sentence for ret, checks for ha/aw cd so you don't waste es
edit: added xelper's amber shaper code
I see people talking about a bunch of weird stuff, are you guys on the current version? I haven't had wog as an ability for almost 4 months.
xelper's works fine for me, will work on cleansing, going to add more to hof soon as well.
My Svn - https://subversion.assembla.com/svn/averykeys-svn/
You don't? It's in every version you've uploaded so far. This is from the newest one:
Code:elseif not IsInInstance() or IsInInstance() and select(2, GetInstanceInfo()) ~= "party" and select(2, GetInstanceInfo()) ~= "raid" then -- Flash of Light if PlayerHP <= 55 and SelflessHealer == 3 then CastSpellByName(GetSpellInfo(19750), "player") -- Word of Glory elseif PlayerHP <= 65 and (UnitPower("player", 9) >= 3 or UnitBuffID("player", 90174)) then CastSpellByName(GetSpellInfo(85673), "player") end end