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

HB ARCHIVES: Singular--DO NOT DELETE

why cant i move with singular? what options are stopping me from moving, i have all movement set to all.

keeps targeting and stopping me from moving around target my self.

What botbase are you using? Questing and Combat Bot handle movement.
If you want the bot for rotation only use Enyo or Raid Bot.
 
Fire mage routine is currently very inneficent. At the beggining and during the routine it will not cast filler fireballs while waiting for heating ups so dps takes a huge dump. Also makes it very slow to farm. Log attached.

We see:
[Singular] *Ice Barrier on Me @ 100.0%
[Singular] *Frost Nova on Marsh Hydra.B12C @ 100.0% at 0.0 yds
[Singular] *Counterspell on Marsh Hydra.B12C @ 99.3% at 0.0 yds
[Singular] *Combustion on Me @ 100.0%
[Singular] *Phoenix's Flames on Marsh Hydra.B12C @ 99.3% at 0.0 yds
[Singular] *Fire Blast on Marsh Hydra.B12C @ 87.4% at 0.4 yds
[Singular] *Pyroblast on Marsh Hydra.B12C @ 86.9% at 1.2 yds
[Singular] *Fire Blast on Marsh Hydra.B12C @ 60.3% at 1.2 yds
[Singular] *Pyroblast on Marsh Hydra.B12C @ 50.8% at 1.2 yds
[Singular] *Phoenix's Flames on Marsh Hydra.B12C @ 24.5% at 1.2 yds
[Singular] *Pyroblast on Marsh Hydra.B12C @ 3.3% at 1.2 yds

With no fireball or scorch being used in the routine it is not working well.
 
This adds Gladiator's/Honorable Medallion usage to all classes in Singular.

Replace file in Honorbuddy\Routines\Singular
 

Attachments

Last edited:
Tell me how to make that Hunter used the talent "liveliness" on cooldown?
 
Demo Warlock talents i have:
Demonic Calling
Improved Dreadstalkers
Demon Skin
Power Trip
Burning Rush
Grimoire of Supremacy
Soul Conduit
 
Last edited:
URGENT: Affliction constantly spams summon doomguard. how do I fix this?


also, doesn't use unstable affliction correctly either. only puts it up once and doesn't dump soul shards on it.
 
Last edited:
I noticed the same issue. Hunter never uses multi-shot which has a huge impact on BM aoe dps.
 
I saw that as well, but changing the wording didn't resolve the issue. Do i need to clear cache as well after changing the spelling?
 
URGENT: Affliction constantly spams summon doomguard. how do I fix this?

also, doesn't use unstable affliction correctly either. only puts it up once and doesn't dump soul shards on it.

Had the same issue with demo. It doesn't seem to check for the 'Grimoire of Supremacy' talent.
 
I saw that as well, but changing the wording didn't resolve the issue. Do i need to clear cache as well after changing the spelling?

I don't think so... just closing the bot and restarting it should be enough, but try if it doesn't.
The change worked for me just restarting hb.
 
URGENT: Affliction constantly spams summon doomguard. how do I fix this?


also, doesn't use unstable affliction correctly either. only puts it up once and doesn't dump soul shards on it.

Had the same issue with demo. It doesn't seem to check for the 'Grimoire of Supremacy' talent.

I don't have Warlock to test this on but this should solve the problem. Make a backup of the file/s before replacing just in case.
Replace file/s in Honorbuddy\Routines\Singular\ClassSpecific\Warlock\

Let me know how it goes.
 

Attachments

Last edited:
Warlock
  • [div=text-shadow: 0px 1px #a3a3a3;][Destruction][/div] ւ Not using final-tier talent.
    ւ Not using Havoc properly.


affliction doesn't use unstable affliction properly, and constantly summons doomguard
 
All Singular issues are being addressed tonight as a new Honorbuddy build should be coming soon.
I'll update the "Issue Tracker" page as these bugs are fixed

Thanks for the reports everyone!
 
All Singular issues are being addressed tonight as a new Honorbuddy build should be coming soon.
I'll update the "Issue Tracker" page as these bugs are fixed

Thanks for the reports everyone!

Echo, hope this helps... the last I did for Retri Pala. Was finishing testing and about to post when I saw your last post.

Enables buffs in BGs.
Fixes Blessing of Freedom.
Adds Cleanse Toxins on self.
Enables Hammer of Justice on dungeons and pvp.
Adds Hand of Hindrance.
Better logic for Divine Steed. Bot still dismounts but is much better than before. (Tried adding the auras to the dismount part in Helpers\Common.cs but it didn't take, or I did it wrong).
Reduced range for Wake of Ashes. It was missing sometimes with (12).
Better logic for Justicar's Vengeance and Holy Power spenders. Last build totally left out non-justicar palas.
And re-ordered rotation a bit... Its working great.

In the Common.cs file:
Commented out the freedom part, bot was trying to remove stuns/fears and obviously failling.
Added Combat check at the end of NeedFlashOfLight() section, to fix the spam FoL problem.

Let me know if I can help in any way. Corrections/tips are welcome :D
 

Attachments

Currently, it appears that HB3 isn't reading buffs off the minions correctly. I use a minion count to track when I should use Thakliel's Consumption and that works perfectly, but when I try to check minions without Demonic Empowerment it doesn't work properly and double or triple casts it.

How to fix the constant casting of Demonic Empowerment on Demonology Warlocks:

I created a custom bool that checks for (I think) every single lastCast you'd want.
Code:
public static bool unbuffedMinions()
        {
            if (S.lastSpellCast == SB.spellDemonicEmpowerment)
            {
                return false;
            }
            if (S.lastSpellCast == SB.spellCallDreadstalkers)
            {
                return true;
            }
            if (S.lastSpellCast == SB.spellHandofGuldan)
            {
                return true;
            }
            if (S.lastSpellCast == SB.spellDoomguard)
            {
                return true;
            }
            if (S.lastSpellCast == SB.spellInfernal)
            {
                return true;
            }
            if (S.lastSpellCast == SB.spellGrimoireFelguard)
            {
                return true;
            }
            if (S.lastSpellCast == SB.spellSummonFelguard)
            {
                return true;
            }
            if (!auraExists(Me.Pet, SB.auraDemonicEmpowerment))
            {
                return true;
            }
            return false;
        }

Works pretty well on my custom routine, thought you guys might want to use it in Singular, since the Me.Minions.Count(min => !min.HasAura(x)) stuff isn't working properly.
 
Currently, it appears that HB3 isn't reading buffs off the minions correctly. I use a minion count to track when I should use Thakliel's Consumption and that works perfectly, but when I try to check minions without Demonic Empowerment it doesn't work properly and double or triple casts it.

How to fix the constant casting of Demonic Empowerment on Demonology Warlocks:

I created a custom bool that checks for (I think) every single lastCast you'd want.
Code:
public static bool unbuffedMinions()
        {
            if (S.lastSpellCast == SB.spellDemonicEmpowerment)
            {
                return false;
            }
            if (S.lastSpellCast == SB.spellCallDreadstalkers)
            {
                return true;
            }
            if (S.lastSpellCast == SB.spellHandofGuldan)
            {
                return true;
            }
            if (S.lastSpellCast == SB.spellDoomguard)
            {
                return true;
            }
            if (S.lastSpellCast == SB.spellInfernal)
            {
                return true;
            }
            if (S.lastSpellCast == SB.spellGrimoireFelguard)
            {
                return true;
            }
            if (S.lastSpellCast == SB.spellSummonFelguard)
            {
                return true;
            }
            if (!auraExists(Me.Pet, SB.auraDemonicEmpowerment))
            {
                return true;
            }
            return false;
        }

Works pretty well on my custom routine, thought you guys might want to use it in Singular, since the Me.Minions.Count(min => !min.HasAura(x)) stuff isn't working properly.
Singular has a "LastSpellCast" method already.
It could most-likely just be handled via: Spell.Cast("Demonic Empowerment", ret => !Spell.LastSpellCast("Demonic Empowerment"))
 
Hi...

I'm using the grind bot for gathering the herbs, however the fight times are too many, the combat will happen any time if the character get attacked. I want reduce the combat frequency, what should I do
 
Back
Top