int yes = 0;
int sleep = 2580000;
Log("start");
while(yes == 0)
{
CollectItemsAtFarm("Hen","Husbandry: Spend 1 Labor and 1 Ground Grain to feed livestock.","NAME");
CollectItemsAtFarm("Thriving Hen","Husbandry: Spend up to 5 Labor to gather eggs.","NAME");
RoundZone z = new RoundZone(me.X,me.Y,10);
CollectItemsInZone("Hen","Husbandry: Spend 1 Labor and 1 Ground Grain to feed livestock.",z);
CollectItemsInZone("Thriving Hen","Husbandry: Spend up to 5 Labor to gather eggs.",z);
Log("Going to rest");
MoveTo(me);
Thread.Sleep(sleep);
Log("Sleep for " + sleep / 1000 + " seconds");
Did some modification from the original. will it work? going to run back to starting point after do all the works.
Another thing is, how to set the NAME automatically. Because i have 2 char. it would be difficult for me to compile everytime.






