This morning I used the plugings no problem, but now, since 1 hour, he does not want to perform, the character does not move and I when I close the plugings:
Desktop\Archeage\Plugins\Sc8\Sc8.dllUnknown executing error, or plugin was forcibly unloaded.
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("Iris seed","AXXX");
PlantItemsAtFarm("Iris seed","BXXX");
PlantItemsAtFarm("Iris seed","CXXX");
CollectItemsAtFarm("Iris","Gathering: Spend 1 Labor to gather materials.","AXXX");
CollectItemsAtFarm("Iris","Gathering: Spend 1 Labor to gather materials.","BXXX");
CollectItemsAtFarm("Iris","Gathering: Spend 1 Labor to gather materials.","CXXXXX");
Thread.Sleep(3000);
}
}
}
}






