What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Turkey farming - leather+meat

smellyb

New Member
Joined
Sep 19, 2011
Messages
7
Reaction score
0
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);
            }
        }
    }
   }
 
What are you doing to avoid getting kicked while AFKing during the wait?
 
Back
Top