• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • HB ARCHIVES: Singular--DO NOT DELETE

    Discussion in 'Archives' started by bobby53, Nov 19, 2012.

    1. Newkostya

      Newkostya New Member

      Joined:
      Jun 19, 2014
      Messages:
      22
      Likes Received:
      0
      Trophy Points:
      0
      Hi guys! How to disable this diagonal movement

      [Singular] MoveToSide: moving diagonally Left for 2.5 yds
       
    2. freddudemp

      freddudemp Member

      Joined:
      Apr 14, 2012
      Messages:
      40
      Likes Received:
      0
      Trophy Points:
      6
      Guardian Druid not using Pulverize
       

      Attached Files:

    3. duo7700

      duo7700 New Member

      Joined:
      May 2, 2013
      Messages:
      8
      Likes Received:
      0
      Trophy Points:
      0
      First of all, thanks for something that (usually) just plain works. Lately, however, I've come across something that doesn't quite work: Holy Paladin. It simply refuses to heal, choosing instead to cast Holy Fire then Denounce until Holy Fire is available to cast. It even does this when I tell it that I don't want it to DPS at all. It won't cast Sacred Shield (if I have that talent), it won't use Holy Prism or Light's Hammer or any other skills that can do damage (I haven't tested Word of Glory with the Harsh Words glyph, however). I've tested this only on Raidbot and Enyo, as I don't have many other options, and I've tested it in Proving Grounds and while doing my daily apexis quest in a raid. If it can be fixed, then awesome. If not, then I'll break down in tears as I try once more to heal my way through the Proving Grounds manually.
      On an unrelated note, the retribution routine works great.

      View attachment 5156 2014-12-03 03.40.txt
       
    4. Mobstarz

      Mobstarz New Member

      Joined:
      Jul 30, 2014
      Messages:
      9
      Likes Received:
      0
      Trophy Points:
      0
      I noticed when playing Frost DK 2H it doesnt use [Obliterate] when it pops and most of the times it doesnt even use [Frost Strike] it just used auto attack. And thats not bad still doesn 9k dmg a hit but [Obliterate] when it hits it does 41k.

      Is there something i can fix or that can be fixed about this ? :eek:
       
    5. valt

      valt New Member

      Joined:
      May 6, 2011
      Messages:
      15
      Likes Received:
      0
      Trophy Points:
      0
      Frost mage just cant stop spamming ice lance. Ice lances itself to dead pretty much. Getting rid of Frostjaw talent seems to have helped a bit, testing more.
       

      Attached Files:

      Last edited: Dec 3, 2014
    6. bobby53

      bobby53 New Member

      Joined:
      Jan 15, 2010
      Messages:
      4,040
      Likes Received:
      178
      Trophy Points:
      0
      *new* Singular v4.0.0.3969 available for download!

      A few quick fixes for issues blocking Rogues and Shadow Priests, as well as support for Garrison Abilities based upon user controlled settings. Additional work in queue still being testing and coming shortly.

      If its worth posting about, its worth following the steps in Post #4 - Reporting Bugs in Singular.

      I have been focusing on the code and less on the forums recently, so my apologies if the lack of a timely response to your Singular post was a concern. I will be responding to all Singular thread posts in the next day. Thanks for your patience,

      -Bobby53

       
    7. TreeK

      TreeK New Member

      Joined:
      Jul 10, 2012
      Messages:
      170
      Likes Received:
      1
      Trophy Points:
      0
      MM Hunter: Rapid Fire is not cast when the Lone Wolf talent (no pet) is selected (note the Pet != null conditional):

      Code:
                          // for long cooldowns, spend only when worthwhile                      
                          new Decorator(
                              ret => Pet != null && Target != null && Target.IsAlive
                                  && (Target.IsBoss() || Target.IsPlayer || ScaryNPC || 3 <= Unit.NearbyUnfriendlyUnits.Count(u => u.IsTargetingMeOrPet)),
                              new PrioritySelector(
                                  Spell.Buff("Rapid Fire", ret => Me.Specialization == WoWSpec.HunterMarksmanship && !Me.HasAura("The Beast Within"))
                                  )
                             ),
      In hopes that it might save you a few seconds, here is the block with a check for LoneWolf added:

      Code:
                   new Decorator(
                              ret => (Pet != null || HasTalent(HunterTalents.LoneWolf)) && Target != null && Target.IsAlive
                                  && (Target.IsBoss() || Target.IsPlayer || ScaryNPC || 3 <= Unit.NearbyUnfriendlyUnits.Count(u => u.IsTargetingMeOrPet)),
                              new PrioritySelector(
                                  Spell.Buff("Rapid Fire", ret => Me.Specialization == WoWSpec.HunterMarksmanship && !Me.HasAura("The Beast Within"))
                                  )
                             ),
      Thanks for all your work bobby53
       
      Last edited: Dec 4, 2014
    8. bobby53

      bobby53 New Member

      Joined:
      Jan 15, 2010
      Messages:
      4,040
      Likes Received:
      178
      Trophy Points:
      0
      A setting was added in latest release (download from Post #1 of this thread) to control the Health % that Prayer of Mending is cast at. -Bobby53
       
    9. vcreation

      vcreation Member

      Joined:
      Nov 17, 2013
      Messages:
      261
      Likes Received:
      1
      Trophy Points:
      18
      since the last update, my rogue no longer stealth anymore, even when 'stealth always' is true. anyone know whats going on?
       
    10. doelol

      doelol New Member

      Joined:
      Dec 4, 2012
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      1
      Hi,
      I can't make my holy priest casting "Flash Heal" unless the target is below 30%. Even with the following settings :

      [​IMG]

      Im using the "base version" of singular

      I don't know if have to post here, and if i need to add a log just tell me.
       
    11. Parametic

      Parametic New Member

      Joined:
      Nov 30, 2014
      Messages:
      24
      Likes Received:
      1
      Trophy Points:
      0
      Hi. I am trying to run DungeonBuddy as resto, but it keeps saying that I am specced as a feral druid. Earlier in the log however, it recognizes that I am resto. Please take a look.

      View attachment 71652 2014-12-04 13.44.txt
       
    12. ryanmcauley

      ryanmcauley New Member

      Joined:
      Oct 26, 2014
      Messages:
      17
      Likes Received:
      0
      Trophy Points:
      0
      As an spriest: it will pull 10 people (even tho its set to "do not pull more") and then spam prayer of mending until it dies and repeats.
       
    13. bobby53

      bobby53 New Member

      Joined:
      Jan 15, 2010
      Messages:
      4,040
      Likes Received:
      178
      Trophy Points:
      0
      *new* Singular v4.0.0.3974 available for download!

      Available for download from Post #1 of this thread.

      Quick fix for those having a problem with Singular casting Garrison Ability when the spell is overridden as Telaari Talbuk or Frostwolf War Wolf in Nagrand. To resolve this issue you can either upgrade to 4.0.0.3974 or disable the use of the Garrison Abilities by setting the Class Config values Garrison Ability: at Health % to 0 and Garrison Ability: at mob count to 99

      Note: if its worth posting about, its worth following the steps in Post #4 - Reporting Bugs in Singular.

       
    14. bobby53

      bobby53 New Member

      Joined:
      Jan 15, 2010
      Messages:
      4,040
      Likes Received:
      178
      Trophy Points:
      0
      ryanmcauley, Thanks for the post, but that does not match the results of my testing. If Singular is intentionally pulling additional mobs, it announces it loudly in bright white text identifying that a Pull More is occurring and what # additional mob it is. If that message is not displaying, then while it could be due to Singular it is most likely interaction in the Questing profile. I would be happy to research this once the details described in Reporting Singular Bugs (click here) are provided. Be sure to add a LOGMARK as described at the point that behavior occurs so there is a specific anchor in the log file that corresponds to the behavior you observed. Thanks for the post and good luck with your Priest, -Bobby53
       
    15. bobby53

      bobby53 New Member

      Joined:
      Jan 15, 2010
      Messages:
      4,040
      Likes Received:
      178
      Trophy Points:
      0
      Parametic: Thanks for the log file. The reference to Feral Druid is coming from:
      Code:
      [18:44:22.277 D] Class profile set to DruidFeral (Druid - Feral)
      
      This is a message from HonorBuddy letting you know that in Settings & Tools you selected a Feral Druid as your active spec for evaluating auto-equip, quest rewards, etc. Just click Settings & Tools and choose Resto Druid and it will resolve that issue.

      You can easily determine if a message came from Singular or not as the line will ALWAYS beging with the text "[Singular]" or "(Singular)". If that does not appear the message came from another component.

      Thanks for the post and good luck with your Druid, Bobby53
       
    16. bobby53

      bobby53 New Member

      Joined:
      Jan 15, 2010
      Messages:
      4,040
      Likes Received:
      178
      Trophy Points:
      0
      doelol, Thanks for the post! Yes, a log file is always required. Note that it will already contain all settings from Class Config so no need to provide an additional screenshot of your Heal settings. For details needed on questions/bugs please see Reporting Singular Bugs (click here). Thanks again and good luck with your Priest, -Bobby53
       
    17. bobby53

      bobby53 New Member

      Joined:
      Jan 15, 2010
      Messages:
      4,040
      Likes Received:
      178
      Trophy Points:
      0
    18. bobby53

      bobby53 New Member

      Joined:
      Jan 15, 2010
      Messages:
      4,040
      Likes Received:
      178
      Trophy Points:
      0
      valt, Thanks for the post and the log files! I reviewed both and here are the findings.

      263056 2014-12-03 15.07.txt
      This log is for a different Combat Routine, so I didn't spend much time on it.

      261012 2014-12-03 15.08.txt
      This log was very useful. While I found the entries I expected indicating that Ice Lance was intentionally used because of FoF stacks or while on the move, there were quite a few other casts I wasn't expecting to see.

      In reviewing your log, its setup, and then the code I was able to determine that the issue existed because of the support for Low-Level Frost Mages. Prior to learning Ice Lance at Level 22, it is important to cast Fire Blast when nothing else is available. When Ice Lance is learned however, it now overrides Fire Blast. This wasn't accounted for so calls to Fire Blast (for various reasons) appeared as Ice Lance casts.

      Fixed in the next release. Thank you for taking the time to post and provide a debug log enabling me to track this down,
      -Bobby53
       
    19. wizardpt

      wizardpt Member

      Joined:
      Sep 26, 2012
      Messages:
      414
      Likes Received:
      0
      Trophy Points:
      16
      Good job, seems shadow priest is using brains now.
       
    20. MaxMuster

      MaxMuster Well-Known Member Buddy Store Developer

      Joined:
      Jan 30, 2012
      Messages:
      1,735
      Likes Received:
      30
      Trophy Points:
      48
      1) Pull More: This Option is not Good for Questing and should be default disabled, i see a lot of Chars dying, because the Singular Routine is not good enough to Handel 2 or more Mobs (when the char normal or crap gear).
      2) Garrison Ability: Pls make a Toggle and set it by default to false.
       

    Share This Page