Hello, I'm new here.
Trying to make archebuddy to plant potatoes in square zone.
Found that plugin :
Planting and gathering on your scarecrow:
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()
{
RoundZone z = new RoundZone(me.X,me.Y,25);
PlantItemsInZone("Potato Eyes", z);
}
}
}
No idea how to make bot plant potatoes in square instead of circle.
Tried change roundzone into recktanglezone , still planting in circle.
Any help ? Please
Trying to make archebuddy to plant potatoes in square zone.
Found that plugin :
Planting and gathering on your scarecrow:
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()
{
RoundZone z = new RoundZone(me.X,me.Y,25);
PlantItemsInZone("Potato Eyes", z);
}
}
}
No idea how to make bot plant potatoes in square instead of circle.
Tried change roundzone into recktanglezone , still planting in circle.
Any help ? Please