What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

scarecrow loop and multiple farms/distance

Mick0211

New Member
Joined
Oct 7, 2014
Messages
20
Reaction score
0
hi

i just got this and never used it. I still have a few questions about it.

so i found the code for making a scarecrow loop to plant and harvest seeds all night like patotoes or azalea's.

So i go to plugin editor and paste the code. what then? will the plugin be active while i log in?
Do i have to stand already on my farm or next to it before i start it up?

i have multiple farms, 2 next to eachother 16x16 and 8x8

and then a few farms further (not mine) i got another 2 of them, also 16 x16 and 8x8 next to eachother.


Can i plant and farm in loops on all those farms with the same plugin (infinite?)
and what is the code?
i ask this because there is some distance between the farms.

ty
 
can you give us 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 Eyes","YourCharacterName");
CollectItemsAtFarm("Potato","Farming: Spend 1 Labor to harvest crops.","YourCharacterName");
Thread.Sleep(5);
}
}
}
}
 
hi

i just got this and never used it. I still have a few questions about it.

so i found the code for making a scarecrow loop to plant and harvest seeds all night like patotoes or azalea's.

So i go to plugin editor and paste the code. what then? will the plugin be active while i log in?
Do i have to stand already on my farm or next to it before i start it up?

i have multiple farms, 2 next to eachother 16x16 and 8x8

and then a few farms further (not mine) i got another 2 of them, also 16 x16 and 8x8 next to eachother.


Can i plant and farm in loops on all those farms with the same plugin (infinite?)
and what is the code?
i ask this because there is some distance between the farms.

ty


Hello there,

Use GPS, Move your bot around. Set each farm as a Point on your Map. Then create a path. use delays or random action e.g. visit merchant, then visit something else later. Protect yourself :3

All the best.

Tip. There are a lot of open source code here, read and you will soon understand how them all work. If you don't know how map works. i'm very sure there are people asking here and answers to it. 100%
 
Back
Top