I'm using the scarecrow plugin and it works great. I want to ask if it's possible to add a loop/repeat option so the bot is always planting and gathering the same seeds. I want to plant and harvest potatoes non stop, but after the plugin finish it ask me again what I want to plant/gather.
I tried this code but it didn't work:
I would be grateful if someone can help me with that code or if you can add a loop option in the scarecrow plugin.
I tried this code but it didn't work:
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()
while (true)
{
PlantItemsAtFarm("Potato Seed","YourCharacterName");
CollectItemsAtFarm("Potato","Farming: Spend 1 Labor to harvest crops.","YourCharacterName");
}
}
}
I would be grateful if someone can help me with that code or if you can add a loop option in the scarecrow plugin.