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

Has anyone figured out how to use Flask of Staunching to remove corrupted blood?

relly

New Member
Joined
Nov 1, 2013
Messages
36
Reaction score
0
So far I've tried this:

Code:
        private IEnumerable<InventoryItem> StaunchingLifeFlasks
        {
            get
            {
                IEnumerable<InventoryItem> inv = LokiPoe.Me.Inventory.Flasks.Items;
                return from item in inv
                    let flask = item.Flask
                    where flask != null && item.Name == "Life Flask of Staunching" && flask.CanUse
                    select item;
            }
        }
Code:
                new Decorator(ret => Me.HealthPercent < 70 && StaunchingLifeFlasks.Count() != 0 && Me.HasAura("Corrupted Blood"),
                    new Action(ret =>
                    {
                        StaunchingLifeFlasks.First().Use();
		    })),

I really want it to work so I can feel safe from going afk for 5 minutes.
 
Bump. Is there any way to remove bleeding when I have the flask?

Edit: Nevermind I found there is [Plugin 2.0] FlaskHelper in the profile section.
 
Last edited:
Back
Top