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

[request] simple plugin

JokerO0o

Member
Joined
Oct 2, 2014
Messages
64
Reaction score
1
hello there! can anyone make me a plugin loop that allow me to walk in circles in a very small area? i need this one to make labor points in the night

sorry for my bad english:(

kind regards
 
hello there! can anyone make me a plugin loop that allow me to walk in circles in a very small area? i need this one to make labor points in the night

sorry for my bad english:(

kind regards

Archebuddy has already an afk system build in i think so you dont need it
 
But you only get detected when you run against a wall or similar but if you for example wal 20m and mount in your mount xdd and go back/ dismount it works
 
Last edited:
1. Open "GPS Editor.exe"
2. Launch the GPS.dll plugin in AB
3. Click "auto send path" and record a decently long (so people don't notice you) path between 2 towns or whatever (you just move around and it will record your path in a file)
3. In the GPS Editor, right click the 2 furthest away points, click properties and name them A/B
4. Create a new plugin in Plugin Editor and insert this inside PluginRun()

Code:
Gps gps = new Gps(this);
gps.LoadDataBase(Application.StartupPath + "\\Plugins\\YourPluginName\\YourDB3File.db3"); // rename the path to match the plugin name and file name
while(true)
{
  gps.GpsMove("A");
  Thread.Sleep(10000);
  gps.GpsMove("B");
  Thread.Sleep(10000);
}

5. Save the path in GPS Editor and move the file to your plugin folder (and rename the plugin/file names in the line with the comment)
6. Get on a mount that needs XP (to at least get something more out of the afk'ing) and run the plugin.
7. Have a good night of sleep o/

Or if you're just trying to afk inside a house, you can do the same with a very short path inside your house (you can use "add path" button instead of the checkbox to add the waypoints manually)
 
Back
Top