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

Endless Movement

jamparke

New Member
Joined
May 5, 2010
Messages
93
Reaction score
0
Does anyone have a plugin that will follow a gps route over and over again in an endless loop?
 
Does anyone have a plugin that will follow a gps route over and over again in an endless loop?

Right! I've been reported a couple of times running in circles (not botting)

Much safer to just run around the roads for a few days.
 
Anybody to help with a simple point A to B then B to A plugin?
 
This is quite simple.
- Create a Directory "EndlessMovement" in the plugin dir.
- Put this script in as "endlessmovement.cs" and compile it.
- Create a path.db3 with the GPS Editor and put it in the "EndlessMovement" directory.
Don't forget to name one point A and one point B

Code:
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Threading;
using System.Collections.Generic;
using System.Linq;
using ArcheBuddy.Bot.Classes;

namespace EndlessMovement{
    public class EndlessMovement : Core
   {     
       private Gps gps;
       
       public static string GetPluginAuthor()
       {
           return "tictoc";
       }

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

       public static string GetPluginDescription()
       {
           return "EndlessMovement - Move from A to B and back from B to A in an endless loop";
       }

       //Call on plugin start
       public void PluginRun()
       {    
           gps = new Gps(this);
           gps.LoadDataBase(Application.StartupPath + "\\plugins\\EndlessMovement\\path.db3");
           while (true)
           {    
               gps.GpsMove("B");    
               Thread.Sleep(2000);
               gps.GpsMove("A");
               Thread.Sleep(2000);
           }
       }
       //Call on plugin stop
       public void PluginStop()
       {
       }
   }
}
 
Back
Top