hey bubba,
I was wondering if possible you can make a simple Prot Pally profile?
Ill be willing to donate.
hey bubba,
I was wondering if possible you can make a simple Prot Pally profile?
Ill be willing to donate.
Attachment 6736
Buba, I did this with your profile from back in February or January, can't remember. I still use it because of this. This is the norm, so I'm afraid to do an update to your new files XD
Last edited by CharleyWex; 03-26-2012 at 08:26 AM.
+5 rep to bu_ba_911 for helping me with some code, and others and his rewrite of HPally Profile.
just got done spreading some rep around...
to PQR users spread the wealth... +rep your coders![]()
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
Just a suggestion.
Could anyone make a Frost mage PvE profile? This would help me out A LOT, and there are no others available
Thank you.
It's a possibility... you aren't the first person to ask for one lol.... however my tanking gear is severely lacking atm... and i have na obligation to look at Blood DK's again first :-/
Just keep a backup of that exact profile somewhere on your computer(or email even haha) and u can give the new one a try
a lot of the newer code is still experimental, but it is starting to seem pretty solid to me
Only thing I'm still on the fence about it, is if people can be aware enough to not idle around while healing so that Crusader Strike and Hammer of Wrath wont pause their rotation trying to cast at some1 behind them XD
TYTY!![]()
Just spread some rep around the profile writers and xelper. As myself and friend have became addicted to using this tool for our characters
Remove everything that has F_Switchtohawk, and F_switchtofox. I'm not going to support this in my profile because it's a dps loss to do so. I've never had anyone mention to me in a raid setting or 5 man that I look bot like when I'm dpsing.
Here is the next update to fix the pvp aspect.
HUNTER_PQR2_V6.rar
I tested the dot exclusion on mobs and it works fine on madness and spine so if there are other mobs that you don't want to waste time dotting let me know and I can easily add them to the list.
Thanks to Bu_Ba for fixing my code.
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
find the initialize code should look like this
and change it to thisCode:if ctInit == nil then ctInit = true function PQ_SwitchToHawk() if UnitBuffID("player", 13165) == nil and UnitIsDead("player") == nil and UnitBuffID("player", 5384) == nil then CastSpellByID(13165, "player") end end function PQ_SwitchToFox() local FoxBuff = UnitBuffID("player", 82661) if PQR_IsMoving(1) == true and FoxBuff == nil and UnitExists("target")and UnitIsDead("player") == nil and UnitBuffID("player", 5384) == nil then CastSpellByID(82661, "player") end end end
what it should do is delay the switching back to hawk if in fox. don't know why you would want to when in the past i've macro'd /cast !aspect of the hawk to all my insta shotsCode:if ctInit == nil then ctInit = true function PQ_SwitchToHawk() if UnitBuffID("player", 13165) == nil and UnitIsDead("player") == nil and UnitBuffID("player", 5384) == nil then CastSpellByID(13165, "player") end end function PQ_SwitchToFox() local FoxBuff = UnitBuffID("player", 82661) if PQR_IsMoving(2) == true and FoxBuff == nil and UnitExists("target")and UnitIsDead("player") == nil and UnitBuffID("player", 5384) == nil then CastSpellByID(82661, "player") end end end
Please if someone helped you donate rep to them.
I was thinking about that, but I think it's better to maybe hot key them. You definitely do not want to use snake trap when for example you have a warrior on you. It would be a bad idea to give them the free Victory Rush.
I don't want to make a REALLY good pvp bot profile in case it motivates Blizzard to start action against PQR. I'll look into setting up more hot keys for traps though
-----------------------------------------------------------------------------------------------------------------
My code for the aspect switching is kept in the datafile, so that is where you would have to modify the code.
Last edited by kickmydog; 03-26-2012 at 02:02 PM.
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
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
I'm curious if there's an LUA function for querying the target's Talent Spec, or if I must resort to checking for talent-specific buffs on the target such as Moonkin Form.
Not entirely true, something like this should work. *UNTESTED*
Code:local shadow = 3 local current_spec = GetPrimaryTalentTree() local main_spec = GetPrimaryTalentTree(nil, nil, 1) local off_spec = GetPrimaryTalentTree(nil, nil, 2) if current_spec ~= shadow then if main_spec == shadow then SetActiveTalentGroup(1) elseif off_spec == shadow then SetActiveTalentGroup(2) else --in spec or none available end end