PQR still isn't recognizing the Stormstrike spellid. Can we get a fix for this please.
PQR still isn't recognizing the Stormstrike spellid. Can we get a fix for this please.
It is not PQR not recognizing it. It is the WoW API.
I suggest asking Blizzard to fix the broken function calls. Ask as if you develop a legitimate addon, not as a PQR profile developer.
Last edited by Xelper; 09-11-2012 at 07:06 PM.
Hey Xelper, how do you find the WoWVersionOffset in the Offset's? I could find all the others, but that one seems to elude me. It's not even listed in the Memory Editing Section :confused:
Kink, your frost profile is really buggy when switching targets, it keeps trying to cast unavailable talents when you are not speced into them
If you find someone's post helpful make sure you +rep them!
The Wiki: https://pqrotation.wikia.com/wiki/PQRotation_Wiki
LOL. Trolling isn't saying something you don't like. However, it is to make someone get all riled up. Inadvertently he did exactly what a "troll" does. Quit being a total douche to people by threatening people over the internet. Nobody gives a crap that you are a shut in troglodyte that probably can't even walk up the stairs to get out of your moms basement for his next installment of Cheetos and Mt. Dew. TOUGH GUY!
Try this KMD_All_Hunter_Rotations_v5.zipI think your profiles are locking up now .. last version was fine (3.0?) but this one locks up after about 30seconds into the rotation, tested on both BM and SV.
Cheers
Last edited by kickmydog; 09-12-2012 at 03:40 AM.
https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017
KMD, it keeps casting Hawk every time it fires an arcane shot. i noticed you added the F_SwitchToHawk to the top of a lot of the abilities. Shouldn't there be a check to see if you already have it though?
Your penis must be soooooo small. I bet you were foaming at the mouth waiting to be able to post again before OC came back up. Go figure, you have that attitude and you live in New York? Amazing. I bet you're a guido. Not even a ripped guido, the fat quido with the ground beef hanging out of the satin shirts.
Last edited by expunge; 09-11-2012 at 11:32 PM.
Where is the check for aspect switching? I looked at your code but I don't see a delay or anything, really having problems with seal switching because I think stances are off the gcd like aspects are.
PHP Code:
function F_SwitchToHawk()
if not UnitBuffID("player", 13165)
and UnitExists("target")
then CastSpellByName(GetSpellInfo(13165),nil) end
end
function F_SwitchToFox()
if PQR_IsMoving(1)
and not UnitBuffID("player", 82661)
and UnitExists("target")
then CastSpellByName(GetSpellInfo(82661),nil) end
end
PHP Code:
function F_SwitchToHawk()
if UnitBuffID("player", 13165) == nil then CastSpellByID(13165, "player") end
end
function F_SwitchToFox()
local FoxBuff = UnitBuffID("player", 82661)
if PQR_IsMoving(1) == true and FoxBuff == nil and UnitExists("target") then CastSpellByID(82661, "player") end
end
edit: lol, at the kids talking about penis size, we know who the kids are now
It has a check in his code so I am not sure why it would be switching
PHP Code:
function F_SwitchToHawk()
if UnitBuffID("player", 13165) == nil
-----------------------------------
function F_SwitchToFox()
local FoxBuff = UnitBuffID("player", 82661)
FoxBuff == nil
Last edited by averykey; 09-12-2012 at 12:21 AM.
My Svn - https://subversion.assembla.com/svn/averykeys-svn/