i have used the scarecrow plugin before, worked great, then grew tired of having to manually select the next plot and seeds to plant, so i made my own
anyway, both still work great, although there is one slight issue with 1 of my 7 gazebos and same problem with 1 of my 2 16 scarecrows...
it will start planting like its meant to, and then as soon as it reaches halfway, it stops, theres enough seeds, it just.. stops.. ?
any ideas ? and/or suggestions ?
ive fiddled with this a few times, just say i were to plant 4 experia patches on the 16 that wont plant more then halfway, and then activated the above script, then it will fill in all the spots with my seeds and complete the entire plot, but wont complete the plot on its own.
all help appreciated.
and if this also happens to you, please, let us know so we can try to fix it
Code:
using System;
using System.Windows.Forms;
using System.Threading;
using System.Collections.Generic;
using ArcheBuddy.Bot.Classes;
namespace Shaun {
public class YourClass: Core {
public void PluginRun() {
while (true) {
//get Labor points
int labor = me.laborPoints;
//if Labor > 1
if (labor > 1) {
//Plant farm 1
PlantItemsAtFarm("Cultivated Ginseng Seed", 12932);
//if Labor < 1 wait
} else {
Log("Labor under 1, waiting to regen");
}
}
}
}
}
anyway, both still work great, although there is one slight issue with 1 of my 7 gazebos and same problem with 1 of my 2 16 scarecrows...
it will start planting like its meant to, and then as soon as it reaches halfway, it stops, theres enough seeds, it just.. stops.. ?
any ideas ? and/or suggestions ?
ive fiddled with this a few times, just say i were to plant 4 experia patches on the 16 that wont plant more then halfway, and then activated the above script, then it will fill in all the spots with my seeds and complete the entire plot, but wont complete the plot on its own.
all help appreciated.
and if this also happens to you, please, let us know so we can try to fix it

Last edited: