I made this, its not perfect, but it works decently enough.
Code:
using System;
using System.Windows.Forms;
using System.Threading;
using System.Collections.Generic;
using ArcheBuddy.Bot.Classes;
namespace YourNamespace
{
public class YourClass : Core
{
public void PluginRun()
{
while (true)
{
CollectItemsAtFarm("Turkey","Husbandry: Spend up to 15 Labor to butcher an animal.","farm1name");
CollectItemsAtFarm("Turkey","Husbandry: Spend up to 15 Labor to butcher an animal.","farm2name");
PlantItemsAtFarm("Turkey Chick","farm1name");
PlantItemsAtFarm("Turkey Chick","farm2name");
CollectItemsAtFarm("Small Turkey Chick","Husbandry: Spend 1 Labor and 1 Ground Grain to feed livestock.","farm1name");
CollectItemsAtFarm("Small Turkey Chick","Husbandry: Spend 1 Labor and 1 Ground Grain to feed livestock.","farm2name");
CollectItemsAtFarm("Turkey","Husbandry: Spend 3 Labor and 1 Livestock Supplement to treat sick livestock.","farm1name");
CollectItemsAtFarm("Turkey","Husbandry: Spend 3 Labor and 1 Livestock Supplement to treat sick livestock.","farm2name");
Thread.Sleep(2200000);
}
}
}
}