Could you please attach the full log file, ty.
http://www.thebuddyforum.com/honorb...-how-attach-your-hb-db-log-file-pictures.html
So this was not an Adventurer related problem. I fixed it with starting the bot when Diablo is in window mode. Weird thing is that it worked before in Full Mode.
If I might add a feature request: How about an option to additionally cast Battle Rage on low life? Depending on you life per fury spent stats this can heal you quite a bit and then acts like a healing skill that doesn't disturb your other skills like attacks.
Battle Rage fury dump options are there for that reason![]()
Hey!
I have war cry set to cast on cooldown, but I noticed its fury sensitive so it wont cast it on CD unless my current fury equals max fury minus fury gained from war cry.
I want it to cast war cry on cooldown regardless of fury gain, I'm running HotA build and I'm always at max fury. The reason I want it to be cast on CD is because I want to make sure the uptime of this buff is as high as possible for my whole 4 man team, they are not always in range when I need the buff, so if I cast it on CD it should result in higher uptime for all 4 while running GRs![]()
Thanks!
if (settings.WarCryMode == WarCryModes.OnCooldown)
{
var generatedFuryAmount = 20;
if (HasRune(SNOPower.X1_Barbarian_WarCry_v2, Runes.Barbarian.Charge))
{
generatedFuryAmount = 50;
}
if (CurrentPrimaryResource <= MaxPrimaryResource - generatedFuryAmount)
{
TryCast(SNOPower.X1_Barbarian_WarCry_v2);
}
}
if (settings.WarCryMode == WarCryModes.OnCooldown)
{
TryCast(SNOPower.X1_Barbarian_WarCry_v2);
}
Go to Plugins\CombatAssist\ClassRoutines and open Barbarian.cs then change
Code:if (settings.WarCryMode == WarCryModes.OnCooldown) { var generatedFuryAmount = 20; if (HasRune(SNOPower.X1_Barbarian_WarCry_v2, Runes.Barbarian.Charge)) { generatedFuryAmount = 50; } if (CurrentPrimaryResource <= MaxPrimaryResource - generatedFuryAmount) { TryCast(SNOPower.X1_Barbarian_WarCry_v2); } }
To
Code:if (settings.WarCryMode == WarCryModes.OnCooldown) { TryCast(SNOPower.X1_Barbarian_WarCry_v2); }
guys can i use this plugin only for track and use my buffs when i play public games with my hands ?
im disable all plugins in menu only Combat assitant checked. but when i press start bot continue fight and i cant control him
guys can i use this plugin only for track and use my buffs when i play public games with my hands ?
Hello, this plugin is just AWESOME = ). It literally is!
Now I am trying to figure something out (if its possible) in DH gameplay with combat assist. I just succeed in turning on spamming Rain of Vengeance Off CD to keep up Natalya's buff, but now I'm trying to change RoV landing area. At the moment it always marks ground beneath my feet, I want to add some kind of best cluster area or Elite. Is it possible with this blank profile? Or checking for clusters is turned off aswell ?