using System;
using System.Drawing;
using System.Windows.Forms;
using System.Threading;
using System.Collections.Generic;
using System.Linq;
using ArcheBuddy.Bot.Classes;
namespace YourNamespace{
public class YourClass : Core
{
private Gps gps;
public void PluginRun()
{
int yes = 0;
Log("start");
while(yes == 0)
{
CollectItemsAtFarm("Hen","Husbandry: Spend 1 Labor and 1 Ground Grain to feed livestock.","YourName");
CollectItemsAtFarm("Hungry Hen","Husbandry: Spend 1 labor and 1 Ground Grain to feed livestock.","YourName");
CollectItemsAtFarm("Diseased Hen","Husbandry: Spend 3 labor and 1 Livestock Supplement to treat sick livestock.","YourName");
CollectItemsAtFarm("Thriving Hen","Husbandry: Spend up to 5 Labor to gather eggs.","YourName");
RoundZone z = new RoundZone(me.X,me.Y,25);
CollectItemsInZone("Hen","Husbandry: Spend 1 Labor and 1 Ground Grain to feed livestock.",z);
CollectItemsInZone("Hungry Hen","Husbandry: Spend 1 labor and 1 Ground Grain to feed livestock.",z);
CollectItemsInZone("Diseased Hen","Husbandry: Spend 3 labor and 1 livestock Supplement to treat sick livestock.",z);
CollectItemsInZone("Thriving Hen","Husbandry: Spend up to 5 Labor to gather eggs.",z);
Log("Going to rest");
Thread.Sleep(2580000);
}
}
}
}