Hi guys, so i am completly noobish in coding, just trying to understand stuff, Out wrote yesterday piece of code, just i am not sure if i changed it correctly, so question is :
If i will be on my farm and i will fire up that plugin, will it afk plant > gather > plant gather till ethernity ?
If i will be on my farm and i will fire up that plugin, will it afk plant > gather > plant gather till ethernity ?
Code:
using System;
using System.Windows.Forms;
using System.Threading;
using System.Collections.Generic;
using System.Linq;
using ArcheBuddy.Bot.Classes;
namespace YourNamespace
{
public class YourClass : Core
{
public Creature PotatoFarm()
{
while (true)
{
PlantItemsAtFarm(Potato Eye); // will it choose my farm ?
CollectItemsAtFarm(Potato);
Thread.Sleep(60000); // is it waiting after every plant or gather ?
}
}
}
}