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)

With the DK... I'm finding its continously targeting itself and as such stopping any and all movement until I intervien or someone attacks it. Not good. I'm running it fresh right now (double checked SVN also) and will post a log after i see it happen again.
 
Let it be known! I'm currently in the midst of rewriting the entire CC, almost entirely from scratch.

I honestly did not expect the project to blow up so quickly as it has. (I had no idea it'd get so popular, so quickly)

With that in mind; I'll be rewriting with better maintainability for the future, and enforce some more strict rules as far as code goes. This should allow us to easily make changes in the future, and keep the code organized, and clutter-free.

With that said, I'll be updating the first post later tonight, or tomorrow, to reflect where to get the last 'good' build. From this point forward; expect trunk builds to lose quite a bit of support until I'm finished rewriting. (Also note to code contribs: please do not commit to trunk until I say so. There will be a lot of work done to abstract away a bunch of things, so you should not need to touch it. [This also leaves me peace of mind that its done correctly, with the utmost in performance.])
 
I updated the damn thing and lost my old revision. I was about to say something about it not even attacking at all, but yea... I see this now.
 
If you are looking for the last builds, before the rewrite:
You can find the SVN checkout repository here: Revision 296: /tags/v1/Singular


From the first post. This is the last working build before the rewrite. Use this until the rewrite is up and running.

I'm looking forward to seeing this beast when its done.
 
Read the first page people. I won't be explaining why your shit is broken if you can't bother to read. (Let alone read the first 3 posts and properly post bugs.)
 
you just broke that cc so no need to post logs.. older version works perfectly
 
current version for blood dk is absolute garbage...
does not self heal, constanly spamming "not ready" and "not enough runes" on the screen
 
the priest cc likes to cast sw:pain on everything. i'm disc and farming dungeons, i don't want to sw:p everything in my path when i can 1-2 shot it

there's no option in the release copy that states "use X dot on adds"
 
What Class are you?: Death Knight
What Spec are you?: Frost/Blood (I was using Frost in that log)
What 'context' is the bot in? (Instance, BG, Normal): Mixed Questing/IB
What level are you?: 62
What revision of Singular are you using?: 295/296 (idk exactly)
Have you made any modifications to Singular?: No
Are you using a branched build, or the trunk build? (Only viable for developers): This one Revision 296: /trunk/Singular (Trunk?)
What version of Honorbuddy are you using?: Honorbuddy 2.0.0.4564
 

Attachments

Last edited:
What Class are you?: Death Knight
What Spec are you?: Blood
What 'context' is the bot in? (Instance, BG, Normal): GB2
What level are you?: 85
What revision of Singular are you using?: what comes with the latest release
Have you made any modifications to Singular?: No
What version of Honorbuddy are you using?: Honorbuddy 2.0.0.4564

Why is my DK still using Unholy presence instead of Blood? Can't this be fixed :)
 
My priest is no longer stopping to drink and is running out of mana when farming. I've set the options in the config and the bot is simply not stopping to drink at all.

What Class are you?: Priest
What Spec are you?: Shadow
What 'context' is the bot in? (Instance, BG, Normal): Normal
What level are you?: 85
What revision of Singular are you using?: what comes with the latest release of HB
Have you made any modifications to Singular?: No
What version of Honorbuddy are you using?: Honorbuddy 2.0.0.4555
 
Apoc, i'm using Singular to heal on my 65 disc priest, everything works perfectly i would just like to have you add something. The CC never dispells magics or diseases and i would really like it to do that = )
 
Apoc, i'm using Singular to heal on my 65 disc priest, everything works perfectly i would just like to have you add something. The CC never dispells magics or diseases and i would really like it to do that = )

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.
 
Awesome thanks for the quick response, do you have an ETA when the new version will be released?

*EDIT* I'm not sure if it already does, but can you make it use Fade if the priest pulls aggro?
 
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 hope the dispelling will be implented for resto druids aswell? :)
 
What Class are you?: Death Knight
What Spec are you?: Frost/Blood (I was using Frost in that log)
What 'context' is the bot in? (Instance, BG, Normal): Mixed Questing/IB
What level are you?: 62
What revision of Singular are you using?: 295/296 (idk exactly)
Have you made any modifications to Singular?: No
Are you using a branched build, or the trunk build? (Only viable for developers): This one Revision 296: /trunk/Singular (Trunk?)
What version of Honorbuddy are you using?: Honorbuddy 2.0.0.4564

sssstill sssssssssame
 
What Class are you?: Death Knight
What Spec are you?: Blood
What 'context' is the bot in? (Instance, BG, Normal): GB2
What level are you?: 85
What revision of Singular are you using?: what comes with the latest release
Have you made any modifications to Singular?: No
What version of Honorbuddy are you using?: Honorbuddy 2.0.0.4564

Why is my DK still using Unholy presence instead of Blood? Can't this be fixed :)
No, this can't be fixed. Unholy presence is the correct presence to use when not tanking, even as Blood DK. You may have noticed the fact that there's a Blood talent that gives your Unholy presence all the benefits of Blood presence except the extra agro.
 
No, this can't be fixed. Unholy presence is the correct presence to use when not tanking, even as Blood DK. You may have noticed the fact that there's a Blood talent that gives your Unholy presence all the benefits of Blood presence except the extra agro.

Anything can be changed... the issue is what build is shinar using. If he is using V1 as listed on the bottom of the first post (since the new build doesn't have any classes in it yet as Apoc is rebuilding it) then he should not be going into any other stance than blood presence if his spec is blood.

snippet from the common.cs with the last build.

Code:
#region PreCombatBuffs

        [Class(WoWClass.DeathKnight)]
        [Behavior(BehaviorType.PreCombatBuffs)]
        [Spec(TalentSpec.BloodDeathKnight)]
        [Spec(TalentSpec.FrostDeathKnight)]
        [Spec(TalentSpec.UnholyDeathKnight)]
        [Spec(TalentSpec.Lowbie)]
        [Context(WoWContext.All)]
        public Composite CreateDeathKnightPreCombatBuffs()
        {
            // Note: This is one of few places where this is slightly more valid than making multiple functions.
            // Since this type of stuff is shared, we are safe to do this. Jus leave as-is.
            return
                new PrioritySelector(
                    CreateSpellBuffOnSelf(
                        "Frost Presence",
                        ret => TalentManager.CurrentSpec == TalentSpec.Lowbie),
                    CreateSpellBuffOnSelf(
                        "Blood Presence",
                        ret => TalentManager.CurrentSpec == [COLOR="red"]TalentSpec.BloodDeathKnight[/COLOR]),
                    CreateSpellBuffOnSelf(
                        "Unholy Presence",
                        ret => TalentManager.CurrentSpec == TalentSpec.UnholyDeathKnight || TalentManager.CurrentSpec == TalentSpec.FrostDeathKnight),
                    CreateSpellBuffOnSelf(
                        "Horn of Winter",
                        ret => !Me.HasAura("Horn of Winter") && !Me.HasAura("Battle Shout") && !Me.HasAura("Roar of Courage"))
                    );
        }

        #endregion

If your dpsing as blood you fail... since dual spec only cost 10g now everyone one should have it.

As for the talent - Improved Blood Presence Its a tanking talent... since they removed defense as a stat to gear/gem for they just made it so you pick it up in the Talent tree now.
 
Back
Top