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()
{
PlantItemsAtFarm("Семена картофеля","xxx");
CollectItemsAtFarm("Семена картофеля","Logging: Spend up to 1 Labor to chop down a tree.","xxx");
//Same but in random zone
RoundZone z = new RoundZone(me.X,me.Y,25);
PlantItemsInZone("Семена картофеля", z);
CollectItemsInZone("Семена картофеля","Logging: Spend up to 1 Labor to collect.",z);
}
}
}