Kickmydog BM/MM/SV Hunter Profiles. menu

User Tag List

Page 19 of 21 FirstFirst ... 15161718192021 LastLast
Results 271 to 285 of 306
  1. #271
    Centralx's Avatar Member
    Reputation
    2
    Join Date
    Jan 2009
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm still really excited for MM improvements, have you had any luck getting the routines to work KMD, or need help testing?

    Kickmydog BM/MM/SV Hunter Profiles.
  2. #272
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Centralx View Post
    I'm still really excited for MM improvements, have you had any luck getting the routines to work KMD, or need help testing?
    No i have not, I'm still looking around for ideas. However right now with there being no changes planned for hunters atm I don't see myself making anymore change to the profiles. Unless there is some sudden new theorycrafting ideas I think this is as good as it is going to get.
    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

  3. #273
    mrkebo's Avatar Master Sergeant
    Reputation
    6
    Join Date
    Feb 2012
    Posts
    78
    Thanks G/R
    0/2
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do you guys go about making Deterance and disengage more responsive. They are off the gcd but it still have to keep spamming the key to death to get them to go off.


    I seemed to have fixed it by upping the Ability Check Delay from 20ms to 100ms.
    Last edited by mrkebo; 11-13-2013 at 06:30 PM.

  4. #274
    Centralx's Avatar Member
    Reputation
    2
    Join Date
    Jan 2009
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mrkebo View Post
    How do you guys go about making Deterance and disengage more responsive. They are off the gcd but it still have to keep spamming the key to death to get them to go off.


    I seemed to have fixed it by upping the Ability Check Delay from 20ms to 100ms.
    I have:
    /stopcasting
    /stopcasting
    /cast spell

    Macro'd to disengage, countershot and deterrence.

  5. #275
    WebKill's Avatar Member
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Couple things I have been playing with the past few days, 560 MM Hunter with 4 piece.

    I was noticing some Thrill of the Hunt procs being wasted, I know that the Arcane Shot ability has code to handle TotH, but I wondered if this might help. I created a new ability with the following code and placed it before Steady Focus on the rotation. Going to test and see what it does to DPS.
    Code:
    if UnitBuffID("player", "109306")
    and UnitPower("player") > 10
    and check(3044)
    then return true end

    I made some alterations to Misdirect, I was noticing that when in a group/raid if the first tank the code gets to is out of range, then it spams the ability. I also noticed that when in a group with no tank, it would not MD to pet or anyone. I have been using the following code to check if tank is out of range (so it will find if next tank is in range), and also if no tank in group then MD to pet. I also return false on training dummy cause that was really annoying when testing rotations.

    Code:
    if UnitIsPlayer("target") == 1 then return false end
    
    if string.find(select(1,UnitName("target")), "Training Dummy") then return false end
    
    local hastank = false
    
    local InParty = GetNumGroupMembers()
    
    if InParty == 0 
    and UnitExists("pet") 
    and UnitThreatSituation("pet","target") ~= 3
    and select(2,GetSpellCooldown(34477)) == 0
    then CastSpellByName(GetSpellInfo(34477),"pet") else
    local groupType = IsInRaid() 
    and "raid" 
    or "party" 
    	for i=1, InParty do
    	    local member = groupType..i
    	    if UnitGroupRolesAssigned(member) == "TANK" then hastank = true end
    	    if UnitGroupRolesAssigned(member) == "TANK" 
    	    and IsSpellInRange(GetSpellInfo(34477),member)
    	    and UnitThreatSituation(member,"target") ~= 3
    	    and select(2,GetSpellCooldown(34477)) == 0 then
    	        CastSpellByName(GetSpellInfo(34477),member)
    	    end
    	end
    end
    
    
    if hastank == false and UnitThreatSituation("pet","target") ~= 3 then
    	CastSpellByName(GetSpellInfo(34477),"pet")
    end

  6. #276
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by WebKill View Post
    Couple things I have been playing with the past few days, 560 MM Hunter with 4 piece.

    I was noticing some Thrill of the Hunt procs being wasted, I know that the Arcane Shot ability has code to handle TotH, but I wondered if this might help. I created a new ability with the following code and placed it before Steady Focus on the rotation. Going to test and see what it does to DPS.
    Code:
    if UnitBuffID("player", "109306")
    and UnitPower("player") > 10
    and check(3044)
    then return true end

    I made some alterations to Misdirect, I was noticing that when in a group/raid if the first tank the code gets to is out of range, then it spams the ability. I also noticed that when in a group with no tank, it would not MD to pet or anyone. I have been using the following code to check if tank is out of range (so it will find if next tank is in range), and also if no tank in group then MD to pet. I also return false on training dummy cause that was really annoying when testing rotations.

    Code:
    if UnitIsPlayer("target") == 1 then return false end
    
    if string.find(select(1,UnitName("target")), "Training Dummy") then return false end
    
    local hastank = false
    
    local InParty = GetNumGroupMembers()
    
    if InParty == 0 
    and UnitExists("pet") 
    and UnitThreatSituation("pet","target") ~= 3
    and select(2,GetSpellCooldown(34477)) == 0
    then CastSpellByName(GetSpellInfo(34477),"pet") else
    local groupType = IsInRaid() 
    and "raid" 
    or "party" 
    	for i=1, InParty do
    	    local member = groupType..i
    	    if UnitGroupRolesAssigned(member) == "TANK" then hastank = true end
    	    if UnitGroupRolesAssigned(member) == "TANK" 
    	    and IsSpellInRange(GetSpellInfo(34477),member)
    	    and UnitThreatSituation(member,"target") ~= 3
    	    and select(2,GetSpellCooldown(34477)) == 0 then
    	        CastSpellByName(GetSpellInfo(34477),member)
    	    end
    	end
    end
    
    
    if hastank == false and UnitThreatSituation("pet","target") ~= 3 then
    	CastSpellByName(GetSpellInfo(34477),"pet")
    end
    You lose dps by not keeping Steady Focus up all the time, also MD is off the GCD, makes no difference to dps if it is on a dummy or not. I've seena number of people who just macro MD to a dps ability so it's not strange to see people using MD on the target dummy. Range check on tank is a good idea though.
    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

  7. #277
    WebKill's Avatar Member
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah, I actually realized that after I posted, I moved TotH after steady focus, as for MD, I just got tired of seeing the ability blinking like mad lol, not that it will help dps, but the ranged part does help.

  8. #278
    mrkebo's Avatar Master Sergeant
    Reputation
    6
    Join Date
    Feb 2012
    Posts
    78
    Thanks G/R
    0/2
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Possible to have the bot not attack General Nazgrim when he is in defensive stance. Atm Im just outranging him when all of the adds are dead.

  9. #279
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mrkebo View Post
    Possible to have the bot not attack General Nazgrim when he is in defensive stance. Atm Im just outranging him when all of the adds are dead.
    I could do that, but that makes the program too bloated. I'm not going to bother making changes for just one boss encounter. Just do what I do, turn off the rotation while on defensive stance, or just turn away so your are not facing the boss.
    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

  10. #280
    Djangochained's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    How to report a problem with the profile.

    If you have a problem with the profile that you want to bring to my attention for a fix make sure that you include the following information:

    Your hunter's level
    Your hunter's specialization
    Your hunter's talent choices
    Your hunter's focus level when the problem happens
    What ability is it stalling it at or what abilities are on cooldown when it gets stuck?
    What are you targeting?
    Any other pertinent information.

    Just saying it doesn't work will probably get a rude reply.
    Hello!
    MM hunter lvl 85.
    talent choices Posthaste/Intimidation/Aspect of the Iron Hawk/Thrill of the Hunt/Blink strikes
    Focus level 50-100
    Chimera shot is on cd
    Targeting any mop mob
    The profile refuses to use Arcane shot whatsoever.Even with 100 focus and chimera shot on cd it will spam steady shot.Also doenst even use it when thrill of the hunt procs!

  11. #281
    K-Z's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how i can remove the autouse of the trinket in the rotation?

  12. #282
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Djangochained View Post
    Hello!
    MM hunter lvl 85.
    talent choices Posthaste/Intimidation/Aspect of the Iron Hawk/Thrill of the Hunt/Blink strikes
    Focus level 50-100
    Chimera shot is on cd
    Targeting any mop mob
    The profile refuses to use Arcane shot whatsoever.Even with 100 focus and chimera shot on cd it will spam steady shot.Also doenst even use it when thrill of the hunt procs!
    I've been using it in raids the last three weeks and I cannot get the profile to mimic the problems that you are having at all. Make sure you aren't testing on a target dummy since it will suppress Arcane Shot for Aimed Shot on the dummy because of Careful Aim. If you are not using it on the dummy I can only suggest deleting the profile and downloading it again.

    Originally Posted by K-Z View Post
    how i can remove the autouse of the trinket in the rotation?
    Remove any references in the profile to /use13 and 14 I believe.
    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

  13. #283
    noladrew's Avatar Member
    Reputation
    7
    Join Date
    Jun 2008
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I could be doing something wrong, but is there a way to make it not use Rapid Fire and Bestial Wrath on cd? And instead on a button press of some sorts? I see there is something in the rotation for RF to but on right shift, but thats only controlling Stampede for me.

  14. #284
    Centralx's Avatar Member
    Reputation
    2
    Join Date
    Jan 2009
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by noladrew View Post
    I could be doing something wrong, but is there a way to make it not use Rapid Fire and Bestial Wrath on cd? And instead on a button press of some sorts? I see there is something in the rotation for RF to but on right shift, but thats only controlling Stampede for me.
    Replace the rapid fire in the rotation with the rapid fire pushdown option.
    There is no reason to not use these on CD in almost every boss fight this tier.

  15. #285
    Centralx's Avatar Member
    Reputation
    2
    Join Date
    Jan 2009
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    I've been using it in raids the last three weeks and I cannot get the profile to mimic the problems that you are having at all. Make sure you aren't testing on a target dummy since it will suppress Arcane Shot for Aimed Shot on the dummy because of Careful Aim. If you are not using it on the dummy I can only suggest deleting the profile and downloading it again.
    Heroic clearing hunter here, with several top parses, unable to reproduce any issue like what he reported. I've used the rotation on all 3 specs with little to no problems. This is far and above the best rotation I've ever used.

Similar Threads

  1. 4.3.4 Hunter Profile
    By skyzor in forum WoW Bot Maps And Profiles
    Replies: 8
    Last Post: 06-12-2014, 07:12 PM
  2. Elite Hunter Profiles.
    By Smilezz in forum WoW Bot Maps And Profiles
    Replies: 3
    Last Post: 11-20-2012, 11:00 AM
  3. PQR PVP Hunter profile?
    By aLorzy91 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 07-29-2012, 02:32 AM
  4. [Request] ZoloFigher, lvl 80 hunter profile, Bootybay rep farm.
    By Anthonyrox8 in forum WoW Bot Maps And Profiles
    Replies: 8
    Last Post: 01-23-2009, 04:39 PM
  5. [Diary] My Hunter // Profiles Inside!
    By StopTheOncoming in forum WoW Bot Maps And Profiles
    Replies: 15
    Last Post: 06-29-2008, 09:37 PM
All times are GMT -5. The time now is 03:57 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search