Hi guys so i am trying to plant on 2 farms seed bundles and than go to third farm ( very close ) and plant otherstuff there, problem is that on seedbundles it start to plant and than mssg show up "to close to other objects" after few sec char will move to another farm with bundles and do same stuff, and than move to third and on third everything is fine ( normal seeds not bundles )
just to let you know i know that plugin is probably writen in horrbile way but it warks great on normal seeds, just what to do to plant bundles without problem ?
ive tried all motion types and plant algorithms, on some it work slightly faster on some it doesnt work at all.
edit, forgot to tell, normal scarecrow plugin struggle with bundles too. if i will choose there "optimal" than it seems fine
just to let you know i know that plugin is probably writen in horrbile way but it warks great on normal seeds, just what to do to plant bundles without problem ?
ive tried all motion types and plant algorithms, on some it work slightly faster on some it doesnt work at all.
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)
{
SetPlantMotionType(PlantMotionType.SecondStandart);
SetPlantAlgoritm(PlantAlgoritm.MaxPerfomance);
CollectItemsAtFarm("Mature Barley Bundle","Farming: Spend 10 Labor to harvest crops.",myfarmid1);
PlantItemsAtFarm("Barley Seed Bundle",14721);
SetPlantMotionType(PlantMotionType.SecondStandart);
SetPlantAlgoritm(PlantAlgoritm.MaxPerfomance);
CollectItemsAtFarm("Mature Barley Bundle","Farming: Spend 10 Labor to harvest crops.",myfarmid2);
PlantItemsAtFarm("Barley Seed Bundle",14611);
SetPlantMotionType(PlantMotionType.Standart);
SetPlantAlgoritm(PlantAlgoritm.Randomized);
CollectItemsAtFarm("Potato","Farming: Spend 1 Labor to harvest crops.",myfarmid3);
PlantItemsAtFarm("Potato Eyes",21252);
Thread.Sleep(55555);
}
}
}
}
edit, forgot to tell, normal scarecrow plugin struggle with bundles too. if i will choose there "optimal" than it seems fine
Last edited: