X xx3 New Member Joined Jun 28, 2012 Messages 7 Reaction score 0 May 23, 2014 #1 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% ?
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% ?
P pushedx Well-Known Member Joined Sep 24, 2013 Messages 4,252 Reaction score 290 May 24, 2014 #2 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.
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.