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
Can u help me with restoration shammy? I think this is because of new riptide, how i need to fix to set my shammy cast Chain heals in raids. With config that we used by standart, toon is not casting chain heal at all. using System; using System.Collections.Generic; using System.Linq; using Syst - Pastebin.com
for anyone who does not want the bot to attack other players during questing, I wrote a plugin for that: https://www.thebuddyforum.com/honor...vent-attacking-players-questing-new-post.html
Demo Warlock talents i have: Demonic Calling Improved Dreadstalkers Demon Skin Power Trip Burning Rush Grimoire of Supremacy Soul Conduit
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.
The spell name was miss spelled in the routine. Lines 82 and 91 "Multi Shot" -> "Multi-Shot" Replace file in Honorbuddy\Routines\Singular\ClassSpecific\Hunter\ View attachment BeastMaster.cs Good Luck!
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.
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.
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!
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
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