Simple Chicken Farmer script.
Uses GPS so make sure to edit the Route. (only needed if you farm is in PVP zone).
This does NOT have Anti-Afk.
Features:
Walks to Farm,
Will Continue Feeding and Retrieving Eggs until all are done.
When Done it will move to SafeZone(Given in GPS Map) and stay there for aprox 43Minutes (chicken Cooldown).
Done.
Uses GPS so make sure to edit the Route. (only needed if you farm is in PVP zone).
This does NOT have Anti-Afk.
Features:
Walks to Farm,
Will Continue Feeding and Retrieving Eggs until all are done.
When Done it will move to SafeZone(Given in GPS Map) and stay there for aprox 43Minutes (chicken Cooldown).
Done.
Code:
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");
gps = new Gps(this);
gps.LoadDataBase(Application.StartupPath + "\\Plugins\\ChickenFarm\\chicken.db3");
while(yes == 0)
{
gps.GpsMove("Farm");
CollectItemsAtFarm("Hen","Husbandry: Spend 1 Labor and 1 Ground Grain to feed 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("Thriving Hen","Husbandry: Spend up to 5 Labor to gather eggs.",z);
Log("Going to rest");
gps.GpsMove("Safe");
Thread.Sleep(2580000);
}
}
}
}