Ok so iv been having a problem with Pqr. If I start wow and Pqr. It shows my char on Pqr hit ok an it freezes. I have updated Pqr every time an launch it from the updater
@Bu-Ba
when you planning on updating the Blood DK? The old one isnt cutting it. Thought i heard u mention you were going to work on a revision.
@googlebee well i tanked hc modes with it no problems unless you want a profile you can afk with just use your cds when needed
bu_ba has an updated Blood DK profile in his Nova set, just open PQR, open the Rotation Editor, click Download Profile from URL, and enter the link he has at the bottom of his signature, the text file.
Thank you for responding for me allYea we have started our re-write of Blood already
(the old code was so messy I couldn't stand to look at it lol so I trashed it XD)
Some people have reported good things about it already
A pm or post on issue tracker with anything currently wrong with what it's doing (not what's currently missing) would be very helpful![]()
Need some help. im using Sheurons holy priest profile to lvl my priest. I know its 85 only but i changed all the abilitys to "Spell Unknown" to false and it works just fine till i hit 70% mana then it just stops healing till i get more mana. I assumed it was cuz its trying to cast Shadowfiend or some other mana regen ability. But, it didnt work. Can some1 take a quick look and tell me if i missed something.
Nvm found it. Shadowfiend didnt have a spellid.
I noticed Sheuron has a file that has racials in it. What about profession skills. Here is the code i made for using lifeblood on bosses. Im not sure what other skills are useful from profesions but maybe we could get a list done up with all of them
Ok so ignore that. Now that i looked herbalist is the only one to get a useable spell. So here is the code i use to activate my rank 8 Lifeblood on bosses.
this is only for rank 8 version of skillCode:if IsSpellKnown(74497) and GetSpellCooldown(74497) == 0 and UnitHealthMax("target") > UnitHealthMax("player")*10 then CastSpellByID(74497) return true end
Last edited by itsmemario; 04-07-2012 at 11:42 PM.
Hm... after first tests this profile looks waaaay behind Boss ones. Ain't using Berserker Rage nor Deadly Calm. But those can be used on our own... Mail problem is that ain't stance dancing at all. Without stance dance, Arms is... :-/.
Still, its nice to see anyone to work on it and I hope it will just get better over time, so if could anyone link me his profile as I would like to rep it.
to anyone collecting eggs for Noblegarden if you have Sheuron's herbalism code just add "Brightly Colored Egg" to the list of herbs and sit back with a beer.
EDIT:credit to Sheuron.Code:local gotloot = GetNumLootItems() local herb = { "Whiptail", "HeartBlossom", "Twilight Jasmine", "Brightly Colored Egg", "Azshara's Veil", "Cinderbloom", "Stormvine" } if GetUnitSpeed("player") == 0 and not UnitCastingInfo("player") and gotloot == 0 then for _,v in ipairs(herb) do InteractUnit(v) end end if gotloot > 0 then for i = 1,gotloot do LootSlot(i) end end