My issue with using spell delays for Ret/Prot Paladins is completely gone. I'm a little baffled as to what was causing it but I did redownload PQR today so that may have had some effect.
My issue with using spell delays for Ret/Prot Paladins is completely gone. I'm a little baffled as to what was causing it but I did redownload PQR today so that may have had some effect.
Maybe Googlebee forgot "end" in syntax. Will feedback if work!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
end
end
end
Last edited by magenpriest; 12-28-2012 at 10:30 PM.
Hey has none of this been updated to latest wow? The program works and hooks to wow but the rotations do nothing when you go to attack someone or something after activated.
And yes ive ran pqr updater.. but from the looks of it all everyones saying is version 5.0.4 and wows current version is 5.1 i think
Last edited by ReapersDeath; 12-29-2012 at 02:13 AM.
Works fine on my end
Edit: What profile are you using and with what level character? - Did you do any editing to the profile? Has the profile worked for that character in the past?
It did work previously. I cant remember the maker but its a warrior fury rotation named xmF and xmA or something like that. F for fury and a for arms. and no ive done no editing. 90 fury warrior
Running it as administrator? If all fails. make a new folder and add the PQR Updater in it and download a fresh copy of PQR. Download a fresh profile and see how it works.
I'm trying to get this work
What i want to do this cast spirit mend if my char has < 60% health if i have a spirit beast upPHP Code:
if UnitExists("pet")
and PQR_SpellAvailable(90361)
and not UnitBuffID("player", 90361)
and 100 * UnitHealth("player") / UnitHealthMax("player") < 60 then
CastSpellByName(GetSpellInfo(90361), "player")
return true
end
what is CURRENTLY does is trying to cast heal but it does not check if i have a spirit beast. so if i have another pet itll just stuck there.
is there anyway to solve this??
maybe add a line with
PHP Code:
if not and PQR_SpellAvailable(90361) then
return false
end
Last edited by DiabloFan; 12-29-2012 at 04:15 AM.
lol that's something new right there, unitcreature familly? didnt know that. ty man.
Edit: It Worked!
Here is the final version
PHP Code:
if UnitExists("pet") and UnitCreatureFamily("pet") == "Spirit Beast"
and PQR_SpellAvailable(90361)
and not UnitBuffID("player", 90361)
and 100 * UnitHealth("player") / UnitHealthMax("player") < 60 then
CastSpellByName(GetSpellInfo(90361), "player")
return true
end
Last edited by darksahde; 12-29-2012 at 04:36 AM.
There is no way this should be allowed in ANY case.
Releasing someone else's work without their permission, in any case, is pretty low; even if this is a 'special' case or w/e is being used to justify it. Nothing gives you the right to distribute something that doesn't belong to you. And asking credit for it? You have to be kidding me.
How is this post still up and no infraction's given out? Really? This is what this forum has become? Petty backstabbing, grade school bickering and dishonest actions? Just because you disagree with someone or don't like their attitude? If you want drama (which clearly a lot of people do) stick to trade chat or reality tv. Have some class on the forums.
This also ruins it for the people who actually paid for this. Its now public and going to be abused/overused; essentially taking away any worth it once had.
gg
Last edited by Diavol; 12-29-2012 at 07:17 AM.
Not like the profile is anything super special, just a decent warrior PvP profile (well coded, but nothing mind blowingly amazing, so skip the abused/overused part please). Plus, that guy was an incredible dick bag and he also released Cokx paid profile (without Cokx being banned or doing anything wrong) so I don't see anything wrong with Ainzwrath releasing it here. **** Bgreen/Failroad, he deserves this and more.
Also, please no discussing here, you can go to the thread at Bot Maps & Profiles if you wanna discuss anything about this.
PQR stopped working right now![]()