that fixed it, It was as simple as I didn't have the Stealth client running at the time. I keep getting random errors but overall, it works.
Post Merge: March 30, 2016, 11:59:11 AM
So I keep getting two errors, that may be related. The problem seems to be that the script looks for a flute and doesn't find it after the last one breaks. I have about 10 of them in my bag. The error below is the most common one I get.
Index was out of range. Must be non-negative and less than the size of the collection parameter name:index
system.throwhelper.throwargumentoutofrangeexception (line 246 in eggfarmer.cs)
The other error is that the program says I am out of flutes and just pops up the three ok boxes like it does when you exit.
The error would imply that the below first line isn't correct? The error of line 246 is the last sentence below (Flutes[0].DoubleClick()

for (int _i = 0; _i < Snakes.Count; _i++)
{
lock (WorkLocker)
{
if (Nests[0].Distance > 9)
{
MoveNextSpot();
break;
}
if (_i == 3)
break;
workerFluteRoutine.ReportProgress(0, "Trying to persuede snakes...");
Stealth.Client.CancelWaitTarget();
Stealth.Client.CancelTarget();
while (true)
{
StopWatch = DateTime.Now;
Flutes[0].DoubleClick();