has gotten me banned
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("Plantname Seed/Sapling","Your Name");
CollectItemsAtFarm("PlantNameWhenDone","Logging/Gathering/Farming: Spend up to changeme Labor to chop down a tree.","Your Name");
//Same but in random zone
RoundZone z = new RoundZone(me.X,me.Y,7);
PlantItemsInZone("Potato Eyes", z, 0);
CollectItemsInZone("Potato","Farming: Spend 1 Labor to harvest crops.",z);
}
}
}
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("Plantname Seed/Sapling","Your Name");
CollectItemsAtFarm("PlantNameWhenDone","Logging/Gathering/Farming: Spend up to changeme Labor to chop down a tree.","Your Name");
//Same but in random zone
RoundZone z = new RoundZone(me.X,me.Y,7);
PlantItemsInZone("Potato Eyes", z, 0);
CollectItemsInZone("Potato","Farming: Spend 1 Labor to harvest crops.",z);
}
}
}