• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Bowman - The Beast Master [LazyRaider]

    Discussion in 'Hunter' started by falldown, Sep 9, 2012.

    1. survivalhunter

      survivalhunter Banned

      Joined:
      Oct 13, 2012
      Messages:
      73
      Likes Received:
      0
      Trophy Points:
      0
      Let us know when its svn'd please ...

      i'll be testing it all day.
       
    2. falldown

      falldown Member

      Joined:
      May 15, 2011
      Messages:
      453
      Likes Received:
      8
      Trophy Points:
      18
      2.1.6 is available in the SVN and as a .zip now.

      - Improved / Fixed AoE rotation
      - Changed how Trinkets and Gloves are used (Gloves are untested, please test and report back)
      - Simplified Aspect Switching (No longer matters if you have the wrong option selected in the GUI)
      - Improved pet calling and reviving (Will be less likely to get stuck spamming one)

      I started using Blink Strike so I've improved it a lot in the past few releases so if someone prefers that, it's properly supported now.
       
    3. projektt

      projektt Active Member

      Joined:
      Sep 21, 2010
      Messages:
      1,424
      Likes Received:
      8
      Trophy Points:
      38
      Still not using trinket or glove enchant in dungeons especially on bosses.
       

      Attached Files:

    4. survivalhunter

      survivalhunter Banned

      Joined:
      Oct 13, 2012
      Messages:
      73
      Likes Received:
      0
      Trophy Points:
      0
      Call pet not working.
       
    5. falldown

      falldown Member

      Joined:
      May 15, 2011
      Messages:
      453
      Likes Received:
      8
      Trophy Points:
      18
      Yes it is.

      Anyway, I figured out why it was casting readiness before it should. I was checking that all the spells that should be on cooldown were on cooldown, but it would also count them as being on cooldown if they were on the Global Cooldown. I've fixed it now so that Global Cooldown doesn't trigger it. Uploading a a fix right now.
       
    6. b3rz3rk

      b3rz3rk Member

      Joined:
      Dec 3, 2011
      Messages:
      157
      Likes Received:
      0
      Trophy Points:
      16
      May I ask why Fervor is recommended talent over Dire Beast?

      Also thanks so much again for this.. it plays BM better than myself
       
      Last edited: Oct 18, 2012
    7. falldown

      falldown Member

      Joined:
      May 15, 2011
      Messages:
      453
      Likes Received:
      8
      Trophy Points:
      18
      Dire beast doesnt give enough focus.
       
    8. offensive

      offensive Member

      Joined:
      Aug 8, 2012
      Messages:
      179
      Likes Received:
      2
      Trophy Points:
      18
    9. falldown

      falldown Member

      Joined:
      May 15, 2011
      Messages:
      453
      Likes Received:
      8
      Trophy Points:
      18
      This obviously has something to do with how bosses are defined so I'll try to mess around with that a little and see if I can fix it or find an alternative way to do it.
       
    10. falldown

      falldown Member

      Joined:
      May 15, 2011
      Messages:
      453
      Likes Received:
      8
      Trophy Points:
      18
      Alright, instead of making a bunch of updates and tests to see if we can figure out this boss detection thing (so it would use cooldowns properly), I'm going to explain the code to you, give a few variations and explain how you can test them out.

      Code:
      private bool IsTargetBoss()
              {
                  if (Me.CurrentTarget.Name.Contains("Dummy") || Me.CurrentTarget.CreatureRank == WoWUnitClassificationType.WorldBoss ||
                     (Me.CurrentTarget.Level >= 90 && Me.CurrentTarget.Elite && Me.CurrentTarget.MaxHealth > 4500000))
                      return true;
      
                  else return false;
              }
      
      That's the current code. What it does is it checks if the (Current target is a Dummy) OR if they're a (World Boss) OR if they're (Over or level 90 AND Elite AND have more than 4.5 million health.)

      If any of these return true, it will use those Cooldowns (Trinkets, rapidfire, etc). I suspect the issue is with
      Code:
      Me.CurrentTarget.Level >= 90 && Me.CurrentTarget.Elite
      Since some bosses level shows up as ??, it might not detect them as being over 90, or Me.CurrentTarget.Elite isn't doing what I think it is.

      So,

      Here's a few variations to that code that might fix it.

      Code:
      private bool IsTargetBoss()
              {
                  if (Me.CurrentTarget.Name.Contains("Dummy") || Me.CurrentTarget.CreatureRank == WoWUnitClassificationType.WorldBoss ||
                     (Me.CurrentTarget.Level >= 90 && Me.CurrentTarget.CreatureRank == WoWUnitClassificationType.Elite && Me.CurrentTarget.MaxHealth > 4500000))
                      return true;
      
                  else return false;
              }
      Code:
      private bool IsTargetBoss()
              {
                  if (Me.CurrentTarget.Name.Contains("Dummy") || Me.CurrentTarget.CreatureRank == WoWUnitClassificationType.WorldBoss ||
                     (Me.CurrentTarget.Elite && Me.CurrentTarget.MaxHealth > 4500000))
                      return true;
      
                  else return false;
              }
      Code:
      private bool IsTargetBoss()
              {
                  if (Me.CurrentTarget.Name.Contains("Dummy") || Me.CurrentTarget.CreatureRank == WoWUnitClassificationType.WorldBoss ||
                     (Me.CurrentTarget.CreatureRank == WoWUnitClassificationType.Elite && Me.CurrentTarget.MaxHealth > 4500000))
                      return true;
      
                  else return false;
              }
      You can change these by editing the BeastMaster.cs file in the BeastMasterTree folder. You can edit it with something like Notepad++ but I think the normal Notepad will do as well. After making any changes just save the file and restart Honorbuddy and the changes should be applied.
       
    11. falldown

      falldown Member

      Joined:
      May 15, 2011
      Messages:
      453
      Likes Received:
      8
      Trophy Points:
      18
      2.1.9 in the SVN, uses all cooldowns "properly" on bosses now, improved spell cast method, changed what targets to actually try to cast shit on (won't try to cast on friendly targets anymore)

      Not everything is properly tested so, use with caution.
       
    12. projektt

      projektt Active Member

      Joined:
      Sep 21, 2010
      Messages:
      1,424
      Likes Received:
      8
      Trophy Points:
      38
      I'm happy about the new change in Hunters when patch comes out

      "Aspect of the Fox has been removed."
      "Steady Shot, Cobra Shot, and Barrage can now always be cast on the move."
       
    13. codywolf

      codywolf New Member

      Joined:
      Jan 15, 2010
      Messages:
      25
      Likes Received:
      0
      Trophy Points:
      0
      Hey guys this CC is working great!!!!. I was just wondering if anyone wanted to post screenshots of there setup mine is working great but there is always room for improvement right now this is how i'm running Best Master.

      ASJgQ.jpg Z7SLB.jpg
       
    14. projektt

      projektt Active Member

      Joined:
      Sep 21, 2010
      Messages:
      1,424
      Likes Received:
      8
      Trophy Points:
      38
      Fervor is much more beneficial than dire beast
       
    15. whip cream

      whip cream New Member

      Joined:
      Feb 10, 2011
      Messages:
      49
      Likes Received:
      0
      Trophy Points:
      0
      Will snake trap be implemented?
       
    16. falldown

      falldown Member

      Joined:
      May 15, 2011
      Messages:
      453
      Likes Received:
      8
      Trophy Points:
      18
      Give me a good reason to.
       
    17. falldown

      falldown Member

      Joined:
      May 15, 2011
      Messages:
      453
      Likes Received:
      8
      Trophy Points:
      18
      Using traps on single target might improve overall DPS, Fervor is going to be a dps boost, also in raiding especially, aspect of the iron hawk is better, and Spirit bond is usually better than Exhilaration (Spirit bond heals you for 120% in 2 minutes, thats 4 times more than Exhilaration). Also using serpent sting on "Sometimes" might be better, casting it on targets that are about to die is a waste of time and focus.

      Also reforge into crit > haste > mastery. Mastery seems to be the weakest stat now.

      Oh and get the latest version from the SVN.
       
      Last edited: Oct 20, 2012
    18. crocodilul

      crocodilul New Member

      Joined:
      Oct 6, 2012
      Messages:
      154
      Likes Received:
      0
      Trophy Points:
      0
      one thing that will make this even better is to make it somehow to change to fox aspect only when he needs to use cobra for example. i'm moving 3 yards from fire, have full focus almost, he is switching to fox and kinda loosing dps there. maybe is only at mine...

      ps: anyway i saw that in next patch won't need to use fox anymore :d
       
    19. projektt

      projektt Active Member

      Joined:
      Sep 21, 2010
      Messages:
      1,424
      Likes Received:
      8
      Trophy Points:
      38
      Wait for new patch when they remove aspect of the Fox all together and you can cast cobra and steady shot on the move all the time
       
    20. cheezemode

      cheezemode Member

      Joined:
      Mar 6, 2011
      Messages:
      68
      Likes Received:
      1
      Trophy Points:
      8
      haven't been reading patch nots but this will be friggen excellent! and this custom class is the BEST available out of all custom classes right now!
       

    Share This Page