What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Singular - A community driven All-In-One CC - It Just Plain Works - (Pt. 2)

I like using singular for my Frost DKs when I have them farming with GB2. It works great and I have yet to have any of the problems that I have using other CCs. However, I like to run the occasional random or two during this same time as I am gathering so I will often que while using GB2 and then, when I get into a dungeon, I will stop the bot and select Lazyraider and use that to run the dungeon. It works great except for one problem, when I use Singular on my Frost DKs they are all the time using deathgrip on their targets, an act that all tanks hate to see and yell very loudly about. It usually forces me to shut down HB all together and restart it using a different CC to run in Lazyraider.

Try as I might I cannot find an on/off setting for Deathgrip in the options menu of Singular. Is there a way to turn Deathgrip off or am I stuck using other CCs when I run dungeons? Thanks for any help that can be given.
 
i have an error on this cc arms (test)
CC konnte nicht von C:\HB Installs\CustomClasses\Singular.r603erstellt werden!
Datei: Arms.cs Pfad: 44 Fehler: Der Name "Raid" ist im aktuellen Kontext nicht vorhanden.

Line 44 is

Raid.ClickExtraActionButton(),

i have this line removed an test the cc in lfr

Sorry about that, here's the Raid.cs file.

Code:
using Styx;using Styx.WoWInternals;


using TreeSharp;


namespace Singular.Helpers
{
    internal static class Raid
    {
        private static bool FadingLight
        {
            get
            {
                double timeLeft = StyxWoW.Me.GetAuraTimeLeft("Fading Light", false).TotalSeconds;
                return timeLeft > 0 && timeLeft <= 2;
            }
        }


        private static bool HourOfTwilight
        {
            get
            {
                if (StyxWoW.Me.CurrentTarget.CastingSpellId == 0)
                    return false;


                return StyxWoW.Me.CurrentTarget.CastingSpell.Name == "Hour of Twilight" &&
                       StyxWoW.Me.CurrentTarget.CurrentCastTimeLeft.TotalSeconds < 1;
            }
        }


        private static bool Shrapnel
        {
            get
            {
                double timeLeft = StyxWoW.Me.GetAuraTimeLeft("Shrapnel", false).TotalSeconds;
                return timeLeft > 0 && timeLeft <= 2;
            }
        }


        public static Composite ClickExtraActionButton()
        {
            return new PrioritySelector(
                // Madness
                new Decorator(
                    ret => Shrapnel,
                    new Action(ret => ClickActionButton())),
                // Ultraxion
                new Decorator(
                    ret => HourOfTwilight,
                    new Action(ret => ClickActionButton())),
                new Decorator(
                    ret => FadingLight,
                    new Action(ret => ClickActionButton()))
                );
        }


        private static void ClickActionButton()
        {
            Lua.DoString("RunMacroText('/click ExtraActionButton1')");
        }
    }
}
 
Before I push this onto SVN, I'd like to get some other people to test this out for me. I've been working on the Arms rotation quite heavily (nearly fully rewritten from what Jon originally wrote). I can't pull any more DPS out of it, no matter how hard I may try.

It should effectively run the high-end arms PVE rotation (and absolutely obliterate any other DPS, unless they purely outgear you). Let me know how it works, and I'll push it to SVN later this week if all is well.
I know a log should be provided to support, but jnust giving you a headsup already; It doesnt seem to work properly. It stays in berserker while stance dance is on true. Also extremely rage starved. Running latest buddy, didnt update to latest singular via svn yet, might cause the issue.

Once again, just a heads up, will do more testing in a few days (And if i encounter probs with logs ofcourse).
 
I know a log should be provided to support, but jnust giving you a headsup already; It doesnt seem to work properly. It stays in berserker while stance dance is on true. Also extremely rage starved. Running latest buddy, didnt update to latest singular via svn yet, might cause the issue.

Once again, just a heads up, will do more testing in a few days (And if i encounter probs with logs ofcourse).

Might need to fix the Heroic Strike logic, it tends to spam a bit more than it should. (Its coded with the T13 2pc in mind, so HS gets used fairly often)
 
I have several times in the fight hes out of rage, and nothing can press because he has used often to Heroic Strike. (Use 4-T13)

WoL Stats are by Ultraxion Fight

Heroic Strike 17.1 % / Mortal Strike 14.7% ...

so Heroic Strike is to much.
 
Last edited:
I have problem with singular.
I am Frost DD or UH DD and when i go LFR Browser or go HC Instances, my DK alsways taunts with Death Grip when he is out of range to mob.
I cant find the option to turn off this feature.
I use revision newest, and in earlier revision for example 555 i haven't this problem.

Please help....sorry for my english
 
hey apoc I have a question about frost DK rotation. For some reason the bot keeps using death grip and pulling agro off of the tank causing me to die. I have tried everything i can in the gui but cant get this to stop. am i missing something. PLEASE healp. and ty for your awsome cc
 
how does the mage cc go on raids?

im looking at gearing my mage and am looking for a GOOD cc to use?

anyone?
 
Im using singular for Shadow Priest PvP and it is working fairly well with two fairly significant problems.

1. It doesn't dispell, at all.
2. It doesn't heal, at all.

Im not sure but I belive it used to do both. I could be wrong though. Either way it should both dispell and heal situationaly.
 
sorry double post, my phone is acting weird.
 
Last edited:
Will happen when the rewrite is passed the framework stages. I intend to create wrappers for a lot of things, to make life easier, and ensure there are fewer bugs.


I see you already plan to add this, great. I can't wait for this feature. It will make a big difference in BGs.
 
When using Singular for frost mages in battlegrounds it works good but when mounted it wants to use the pet freeze and wont dismount so it can use it.
can that part be fixed?
 
You guys playing DK and having trouble with deathGrip. Have you tried to set taunt to false in the settings?
 
Unable to connect to a repository at URL "http://svn.apocdev.com/singular/trunk/Singular/"
 
Code:
                //Innervate
                Spell.Buff("Innervate", ret => StyxWoW.Me.ManaPercent <= SingularSettings.Instance.Druid.InnervateMana),

Should be added for Feral to, because it makes Leveling much easyer.
 
View attachment 3-2-2012_11_09 AM 5924 Log.txtWhat Class are you?: Boomkin
What Spec are you?: Balance
What 'context' is the bot in? (Instance, BG, Normal): Grind
What level are you?: 85
What revision of Singular are you using?: v2 Rev 576
Have you made any modifications to Singular?: No
Are you using a branched build, or the trunk build? (Only viable for developers):
What version of Honorbuddy are you using?: v2.0.0.5785

Please provide an explanation of the bug. The more detail, the easier it will be to resolve.
For some reason it tries to place the wild mushroom down or even treants and half the time it doesnt' place it. Stands there for a couple minutes letting the mobs beat on him. If I manual kill everythign goes back to normal until he tries to place treants or mushrooms again.
 
Last edited:
Back
Top