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

[Plugin] Combat Assist - Self Play Buff Tracker & Survival Helper

Hey, would be great having an option to add an alarm (sound/light/icon) when the crit buff of broken promises is active :-)
Anyway idk if it's possible...
 

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.
 
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 :)
 
something I would like is if it wouldn't use for example spirit walk and health potion at the same time, I put them at different %'s but it will use them both most of the time, anyway really like this plugin its exactly what I wanted except for this problem I have :)
 
I would love if the bot could use battle rage of Taeguk was about to expire as it takes a very long while to raise 70 stacks and it hurts if they drop
And it's relatively common on HotA builds
 
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!
 
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!

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);
    }
 
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);
    }

Thanks! Will try this :)
 
guys can i use this plugin only for track and use my buffs when i play public games with my hands ?
 
guys can i use this plugin only for track and use my buffs when i play public games with my hands ?

Yes, thats pretty much the reason it was created. It does 0 combat or movement for you. It literally only keeps your buffs up, while you are in combat and playing by hand.
 
im disable all plugins in menu only Combat assitant checked. but when i press start bot continue fight and i cant control him
 
im disable all plugins in menu only Combat assitant checked. but when i press start bot continue fight and i cant control him

You need to follow the instructions in the first post step by step. You need (or should have) a second installation of Demonbuddy. You need to delete some things immediately before ever starting the bot. There should be nothing for you to "disable" if you installed it correctly because everything you are trying to disable right now, should have already been deleted.
 
if u add for crusader section option : cast Punish every time when buff Hardened Senses absent it will super useful. buff give 15 % block and 15 % crit with last rune but bot cast Punish super rare
 
Would it be possible to read the timer left on a buff and make sure it doesn't fall off before reapplying? Or to possibly use a buff ever X seconds? What I would like to do is have it monitor my stacks of Taeguk, and if there is 1 second left on the buff, use Battle Rage to keep it up. In combat, HotA will keep applying the stacks, so it wouldn't worry about using it then (unless of course the buff dropped or it was dumping rage), and when out of combat it would keep the stacks up until I was back in the fray. Let me know if this makes sense; thanks for your work!
 
Excellent project! Was a nice feature that's missing for those in mostly player controlled group runs.
 
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 ?
 
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 ?

Thank you :)

It doesn't include anything related targeting, so that would require a lot of change to implement, probably not gonna happen anytime soon, sorry.
 
Back
Top