Code:
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Threading;
using System.Windows.Forms;
using ArcheBuddy.Bot.Classes;
namespace kvadrat{
public class kvadrat : Core
{
//Call on plugin start
public void PluginRun()
{
while (true)
{
RectangleZone z = new RectangleZone (me.X,me.Y,18,18);
PlantItemsInZone("Семена Женьшеня", z);
Thread.Sleep(2000);
}
//Call on plugin stop
public void PluginStop()
{
Log(DateTime.Now.ToShortTimeString() + "Закончили");
}
}
}






