get the following error on 2 different wow installs
the add on try to execute the insctruction UNKNOWN()) from a tainted execution path.
Debug:
[C]: ?
[C]: CastSpellByID()
[string "if PQR_Addon_Loaded == nil then..."]:698: PQR_CastAbility()
[string "if PQR_Addon_Loaded == nil then..."]:540: PQR_ExecuteRotation()
[string "if PQR_Addon_Loaded == nil then..."]:288:
[string "if PQR_Addon_Loaded == nil then..."]:214
Those having troubles with addons can disable all, try one by one and tell which addon interference. Im currenly only using DBM and Recount, didnt got any error with those.
[ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
If you like this piece of code feel free to invite me a beer making a donation.
My paypal account: [email protected]
hey sheuron i have a question for ya:
would it break it if I changed this:
function HaveBuff(UnitID,SpellID,TimeLeft,Filter)
to
function HaveBuff(UnitID,SpellID,Filter,TimeLeft)
and do the same for HaveDebuff?
or would it force it to provide a filter
Please if someone helped you donate rep to them.
Ok here ya go Dxterminator:P
I made them into xml files for ya.
Enjoy:P
Download it here Download Slaweek_WARLOCK_Rotations.rar from Sendspace.com - send big files the easy way
Ipass
[ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
If you like this piece of code feel free to invite me a beer making a donation.
My paypal account: [email protected]
Hey buds,
I tried to google a solution to this but after a few hours of trying I've reached my limit and am gonna have to ask you guys for help just installing/using this program.
After downloading PQR and installing it, I have absolutely no idea how to proceed. I've tried several times making my own and installing other user's profiles but each time I try to make a rotation it comes up blank. I install others' profiles and they don't show up.
Any help would be very appreciated, or if there is a hidden FAQ that I failed to find that someone could link or provide me, I would be very grateful.
Thanks
are you using the most current version of WoW and PQR? there is an update button within PQR that will also download the latest offsets for the most current WoW patch.
for the profiles, you need to make sure both the rotation.xml and abilities.xml is within the PQR\PROFILES\CLASS folder. some newer rotations also require the use of a data file, which should be included in whatever archive file the XMLs were in. the data file goes in the PQR\Data folder
When i try to load it it sais: It's not well formed, and when i read it on this forum, there are smiley's in it. Those smileys (probably : ), are not being copied, so the file isnt completet because it lacks some : and some )
I tried to change onya profile to use it on hc unsleeping, it works fine with me but my friend said he had problem with it so if can someone looks at and inofrm me were is my mistake I will be thankful.
anyway there was nothing much to change I change Riptide to cast always on focus target which should be a pet.
I also removed CH, ES, HR , HS and HW from rotation .
and did some change on some spells by adding a codes from eff's resto druid porfile
I changed "cancel ghw" to :
this will make sure to cancel casting GHW after 4 stacksCode:local ghwname = GetSpellInfo(77472) local _,_,_,Stacks = UnitDebuffID(member[lowest].name, 105171) if ((member[lowest].health > 90) and Spell == ghwname) or ( Stacks ~= nil and Stacks > 3) then RunMacroText("/stopcasting") return true end
and I changed "Nature's Swiftness" to
this will make sure that it will sure it will not caste instance GHW on target with for 3 stacks and more since instance heal code confuse other healers.Code:local _,lcd = GetSpellCooldown(16188) if lcd == 0 and member[lowest].health < nshealth and IsUsableSpell(16188) then SilentCast(16188) end local NS = UnitBuffID("player", 16188) local _,_,_,Stacks = UnitDebuffID(member[lowest].name, 105171) if NS ~= nil and IsUsableSpell(77472) and Stacks < 3 then SilentCast(77472,member[lowest].name) return true end
i think i need to modify this code more so it will use the cd on target with less than 3 stacks. but i guess i was not thinking stright so u could try this code instead on it.
this will make sure to cancel casting GHW after 4 stacks
and i changed GHW toCode:local _,lcd = GetSpellCooldown(16188) local _,_,_,Stacks = UnitDebuffID(member[lowest].name, 105171) if lcd == 0 and member[lowest].health < nshealth and IsUsableSpell(16188) and Stacks < 3 then SilentCast(16188) end local NS = UnitBuffID("player", 16188) if NS ~= nil and IsUsableSpell(77472) and Stacks < 3 then SilentCast(77472,member[lowest].name) return true end
and finally i change riptide toCode:local _,_,_,Stacks = UnitDebuffID(member[lowest].name, 105171) if moving == 0 and IsUsableSpell(77472) and isvalidhealtarget(member[lowest].name) and (member[lowest].health < ghwhealth ) and Stacks < 4 then SilentCast(77472,member[lowest].name) return true end
ONYAtestCode:local _,lcd = GetSpellCooldown(61295) if lcd == 0 and IsUsableSpell(61295) and UnitExists("focus") then SilentCast(61295,"focus") return true end