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

A plugin that just runs a route?

Status
Not open for further replies.

TheEnd

Member
Joined
Oct 21, 2014
Messages
121
Reaction score
0
Hi,

Is there a plugin that I can use that would just run a pre-defined route in order to anti-AFK? Rather than jump in one spot or run in a circle, I thought it'd be way smarter to just have a bot run around the map overnight while I sleep to prevent AFK'ing.
 
Code:
public void PluginRun()
{
	Gps gps = new Gps(this);
	gps.LoadDataBase(Application.StartupPath + "\\path.db3");
	while (true) {
		gps.MoveTo("end");
		gps.MoveTo("start");
	}
}

(Untested code)

..

Or you can just call UpdateNoAfkState() (if it does what I think it does).
 
Last edited:
Status
Not open for further replies.
Back
Top