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

Why doesn't DemonBuddy use potions?

eXtOphius

Member
Joined
Jan 15, 2010
Messages
219
Reaction score
3
Are health potions ever going to be hard coded into the core of DemonBuddy?

It would be really nice to not have to use plugins to make this work, especially for Hardcore botters.

Cheers,
XtO
 
Belph uses pots.

I'm currently watching a Demon Hunter with potions in it's inventory die while leveling up in Act 3 Hell (Softcore), and never using a potion. In fact, I've never seen it use any potions before. I only use Belphegor.

Is that Mythic Potion only?

XtO

Edit: I did in fact just watch it use a potion, however, it was so already so low that it still died.
 
Last edited:
The thresh hold is so low that you do not normally see it get used.

Should have a way to adjust it since in Inferno you want to use it earlier then later.
 
try using EMC plugin?

I dislike using lots of plugins, mainly because I am lazy and don't like having to go find which thread they are in, to download a new update due to compatibility issues, after every new DemonBuddy release.

The thresh hold is so low that you do not normally see it get used.

Should have a way to adjust it since in Inferno you want to use it earlier then later.

In Belphegor\Helpers\Common.cs:

Code:
new Decorator(ctx => ctx != null,
                            new Sequence(
                                new Action(ctx => ZetaDia.Me.Inventory.UseItem(((ACDItem)ctx).DynamicId)),
                                new Action(ctx => _potionCooldownTimer.Reset()),
                                new Action(ctx => Logger.Write("Potion set to use below {0}%, my health is currently {1}%, using {2}", 100 * BelphegorSettings.Instance.HealthPotionPct, Math.Round(100 * ZetaDia.Me.HitpointsCurrentPct), ((ACDItem)ctx).Name))
                                )
                            )
                        )

I don't know whether or not that is the file that handles the use of potions, if it is, I'm not exactly sure what's going on with that line and which numbers to properly edit.

Does anyone else know if that is correct?

XtO
 
Back
Top