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

Healing Potion - help pls

xx3

New Member
Joined
Jun 28, 2012
Messages
7
Reaction score
0
I am playing hardcore and the bot activates the healing potion a bit late imo.

Is it possible to set it so that it triggers let's say at 95% hp or 90% ?
 
If you open the "Routines\Exile\Exile.cs" file, and go to the "CreateFlaskLogic" function, you can change the health trigger % from the default of 70 to 90:

Code:
new Decorator(ret => _flaskCd.IsFinished && Me.HealthPercent < 70 && LifeFlasks.Count() != 0 && !Me.HasAura("flask_effect_life"),
                    new Action(ret =>
                    {
                        LifeFlasks.First().Use();
                        _flaskCd.Reset();
                    })),

You'll need to restart the bot after saving your changes.
 
Back
Top