I am new to botting and I am trying to figure out how to get this script work;
This isn't my script, I found it here (https://www.thebuddyforum.com/archebuddy-forum/archebuddy-plugins/179458-scarecrow-loop.html). Basic farming loop script, I'm using it as a easy example. But what are the steps to turn a script into a working? I can't figure out how to make it usable. I have it in the editor and saved as a .cs file but I don't know what to do from there.
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()
{
while (true)
{
PlantItemsAtFarm("Potato Seed","YourCharacterName");
CollectItemsAtFarm("Potato","Farming: Spend 1 Labor to harvest crops.","YourCharacterName");
Thread.Sleep(55555);
}
}
}
}
This isn't my script, I found it here (https://www.thebuddyforum.com/archebuddy-forum/archebuddy-plugins/179458-scarecrow-loop.html). Basic farming loop script, I'm using it as a easy example. But what are the steps to turn a script into a working? I can't figure out how to make it usable. I have it in the editor and saved as a .cs file but I don't know what to do from there.