Hello! i feel like a crazy person with all these posts I be posting hehe. Anyways, I am working on something that will auto wither
heres my code:
for (int i = 0; i < Rail.Count(); i++)
            {
                if (Player.Hits != Player.MaxHits)
                {
                    healSelf(Player);
                }
                advancePosition(Player, Rail.ElementAt(i));
                SDK.Initialize();
                Stealth.Client.SetFindDistance(2);
                Stealth.Client.SetFindVertical(0);
                somethings = Scanner.Find<Something>(0x0, false).OrderBy(x => x.Distance).ToList();
                foreach (Something m in somethings)
                {
                   Player.Cast("Wither");
                   Thread.Sleep(1000);
                   if (Player.Hits != Player.MaxHits)
                   {
                      healSelf(Player);
                   }
                }
                if(somethings.Count == 0)
                {
                    continue;
                }
            }
dont judge if this is terribly wrong! im learning =]