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

How can i make a profile?

Status
Not open for further replies.

hallo099

New Member
Joined
Apr 8, 2014
Messages
6
Reaction score
0
Hey Guys, im completly new to this bot! So i want to semi automatic traderuns! Which means i just want to drive my Character automatic and load the cary manually.

How can i create a programm that do just drive with my farm cart? i mean how can i track and he just walk this way again?

Maybe someone can explain it to me in some steps!


Would be nice THANKS!
 
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Threading;
using System.Collections.Generic;
using System.Linq;
using ArcheBuddy.Bot.Classes;

namespace DefaultNameSpace{
public class DefaultClass : Core
{
public static string GetPluginAuthor()
{
return "Plugin Author";
}

public static string GetPluginVersion()
{
return "1.0.0.0";
}

public static string GetPluginDescription()
{
return "My plugin description";
}

//Call on plugin start
public void PluginRun()
{
}
this.gps = new Gps(this);

this.gps.LoadDataBase(Application.StartupPath + "\\plugins\\Trade\\route.db3");

if(this.gps.GpsMove(point))
{
Log("We arrived at the destination");
this.arrived = true;
}
public void PluginStop()
{
}
}
}


Where is my Problem?
 
Status
Not open for further replies.
Back
Top