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

What's wrong, tell me why the script is not working, plz ?

Turel

New Member
Joined
Oct 4, 2014
Messages
31
Reaction score
0
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() + "Закончили");
       }
   }
}
 
Back
Top