Thanks Xelpher, works great +rep
^^ yea LB is supposed to be almost your MAIN mana management skill as a Resto Sham.... Without it there is zero way you will be able to not go oom in a long fight..... if you don't ahve that skill i recommend fullheartedly that you get it.... i haven't used the most updated version, but the previous versions were fine as far as priorities went for me when i looked at it![]()
Oooooh, Thank you guys. I did not have that talent because I followed elitist jerks 10 man build -___-
I would love a Ret-PVP profile, one that resembles this HB-CC which I've had a lot of success with.
So I had an idea, but I really don't have the experience with Lua GUI frames to write it from scratch (or the time to figure them out AND make them look good).
I want to make a transparent background on screen display that displays the icon and name of the current ability being cast. If someone who wants to take this up I will give you credit.
Just create a typical WoW addon, and make this frame work as requested. It should have a function such as PQR_DisplaySpell(AbilityName, SpellID) that displays the info in the frame... the icon lookup should be based on spell ID not ability name since that is user defined.
I will do the work in integrating it into PQR, have it auto injected, etc.
I was considering having it display a few spell IDs, kind of like a timeline, but I don't think that will work with how everything is currently setup. I could have it loop through the abilities and find the first few that return true, however people have been writing profiles that execute action functions in the testing code... I will have to think about the best way to implement this, maybe another code section (or 2) for "Execute Prior to Ability Cast" and "Executue After Ability Cast"... but for now one icon is good.
EDIT: Oh yeah, multiple profile XMLs is coming along nicely:
![]()
Last edited by Xelper; 10-09-2011 at 04:46 PM.
Still waiting for a PvE disc buildpreferably a non AA/A build
i uses gnosis castbars to get a better idea of what's going on. the top bar (down the bottom) is the gcd bar, the one below is a standard cast bar. the gcd bar shows instants as well as spells with a cast time, as long as the instant spells invoke the gcd which most do.
here's a video of it in action, it's my first attempt at using fraps.
@ Xelper: any possibility of being able to map more then 4 rotations to the "smart hotkey macro" in a future release
@ everyone: anyone who has extensive PVE,PVP interruption lists and wants an easier way of swapping out interruption lists, this is my is my cata heroic list, simply change out the first 2 variables for your classes interrupt spellid and name:
Code:-- interupts: Mind Freeze:47528, Skull Bash: cat:80965 Bear:80964, Rebuke:96231, Kick:1766, Pummel:6552, Counterspell:2139, local int = 47528 local intn = "Mind Freeze" local Ss,Sd = GetSpellCooldown(int) local Scd = Ss + Sd - GetTime() local pveList = { "Healing Wave","Hex","Shock Blast","Chain Lightning","Shadow Strike","Dark Command","Confounding Flames","Warped Twilight","Conjure Twisted Visage","Focused Geyser","Flame Conduit","Chained Mind","Umbral Mending","Tranquility","Pact of Darkness","Charged Shot","Anti-Magic Prison","Reverberating Hymn","Summon Sun Orb","Inferno Leap","Hex","Ritual of Bloodletting","Chain Lightning","Lightning Lash","Greater Heal","Cloudburst","Force of Earth","Magma Eruption","Demon Portal","Force Grip","Holy Fire","Motivate","Seaswell","Fear","Drain Life","Pain and Suffering","Unholy Empowerment","Cursed Bullets","Fireball Volley","Ancient Power","Heal","Holy Light","Healing Wave","Flash Heal","Ancient Power","Blood Leech","Whispers of Hethiss","Tears of Blood"} local sname,_,_,_,_,_,_,_,sInt = UnitCastingInfo("target") if IsSpellInRange(intn,"target") == 1 and Scd < 0 and sInt == false then for i,v in ipairs(pveList) do if sname == v then CastSpellByID(int,"target") return false end end end